Update colour theme and nvimtree config

This commit is contained in:
Saeed Afzal
2022-05-31 14:28:32 +01:00
parent b23c5e2ab4
commit 9b9e22c8d0
5 changed files with 13 additions and 21 deletions

View File

@@ -1,9 +0,0 @@
require("catppuccin").setup {
integrations = {
lsp_trouble = true,
which_key = true,
barbar = true
}
}
vim.cmd[[colorscheme catppuccin]]

View File

@@ -1,6 +1,6 @@
require("lualine").setup {
options = {
theme = "catppuccin"
theme = "tokyonight"
},
extensions = {

View File

@@ -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 {
disable_netrw = true,
create_in_closed_folder = true,
hijack_cursor = true,
update_cwd = true,
@@ -15,6 +9,9 @@ require("nvim-tree").setup {
},
renderer = {
highlight_git = true,
highlight_opened_files = "all",
group_empty = true,
indent_markers = {
enable = true
}

View File

@@ -0,0 +1,5 @@
local g = vim.g
vim.g.tokyonight_italic_functions = true
vim.cmd[[colorscheme tokyonight]]

View File

@@ -4,10 +4,9 @@ require("packer").startup(function(use)
use "nathom/filetype.nvim"
use {
"catppuccin/nvim",
as = "catppuccin",
"folke/tokyonight.nvim",
config = function()
require("plugins.config.catppuccin")
require("plugins.config.tokyonight")
end
}
@@ -124,7 +123,7 @@ require("packer").startup(function(use)
{
"neovim/nvim-lspconfig",
config = function()
require("nvim-lsp-installer").setup {}
require("nvim-lsp-installer").setup()
end
}
}