Update colour theme and nvimtree config
This commit is contained in:
@@ -1,9 +0,0 @@
|
|||||||
require("catppuccin").setup {
|
|
||||||
integrations = {
|
|
||||||
lsp_trouble = true,
|
|
||||||
which_key = true,
|
|
||||||
barbar = true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
vim.cmd[[colorscheme catppuccin]]
|
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
require("lualine").setup {
|
require("lualine").setup {
|
||||||
options = {
|
options = {
|
||||||
theme = "catppuccin"
|
theme = "tokyonight"
|
||||||
},
|
},
|
||||||
|
|
||||||
extensions = {
|
extensions = {
|
||||||
|
|||||||
@@ -1,12 +1,6 @@
|
|||||||
local g = vim.g
|
|
||||||
|
|
||||||
g.nvim_tree_git_hl = 1
|
|
||||||
g.nvim_tree_highlight_opened_files = 1
|
|
||||||
g.nvim_tree_group_empty = 1
|
|
||||||
g.nvim_tree_create_in_closed_folder = 1
|
|
||||||
|
|
||||||
require("nvim-tree").setup {
|
require("nvim-tree").setup {
|
||||||
disable_netrw = true,
|
disable_netrw = true,
|
||||||
|
create_in_closed_folder = true,
|
||||||
hijack_cursor = true,
|
hijack_cursor = true,
|
||||||
update_cwd = true,
|
update_cwd = true,
|
||||||
|
|
||||||
@@ -15,6 +9,9 @@ require("nvim-tree").setup {
|
|||||||
},
|
},
|
||||||
|
|
||||||
renderer = {
|
renderer = {
|
||||||
|
highlight_git = true,
|
||||||
|
highlight_opened_files = "all",
|
||||||
|
group_empty = true,
|
||||||
indent_markers = {
|
indent_markers = {
|
||||||
enable = true
|
enable = true
|
||||||
}
|
}
|
||||||
|
|||||||
5
lua/plugins/config/tokyonight.lua
Normal file
5
lua/plugins/config/tokyonight.lua
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
local g = vim.g
|
||||||
|
|
||||||
|
vim.g.tokyonight_italic_functions = true
|
||||||
|
|
||||||
|
vim.cmd[[colorscheme tokyonight]]
|
||||||
@@ -4,10 +4,9 @@ require("packer").startup(function(use)
|
|||||||
use "nathom/filetype.nvim"
|
use "nathom/filetype.nvim"
|
||||||
|
|
||||||
use {
|
use {
|
||||||
"catppuccin/nvim",
|
"folke/tokyonight.nvim",
|
||||||
as = "catppuccin",
|
|
||||||
config = function()
|
config = function()
|
||||||
require("plugins.config.catppuccin")
|
require("plugins.config.tokyonight")
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -124,7 +123,7 @@ require("packer").startup(function(use)
|
|||||||
{
|
{
|
||||||
"neovim/nvim-lspconfig",
|
"neovim/nvim-lspconfig",
|
||||||
config = function()
|
config = function()
|
||||||
require("nvim-lsp-installer").setup {}
|
require("nvim-lsp-installer").setup()
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user