Create separate theme.lua file

This commit is contained in:
2021-12-26 23:12:31 +03:00
parent 1258044cea
commit 4fc000da8c
2 changed files with 17 additions and 8 deletions

16
config/nvim/lua/theme.lua Normal file
View File

@@ -0,0 +1,16 @@
-- General
vim.cmd([[
hi Comment gui=italic
]])
-- File tree
vim.cmd([[
hi NvimTreeGitNew guibg=green
hi NvimTreeGitStaged guibg=lightgreen
hi NvimTreeGitDeleted guibg=red
hi NvimTreeGitDirty guibg=lightblue
hi NvimTreeGitMerge guibg=yellow
hi NvimTreeGitIgnored guibg=gray
hi NvimTreeOpenedFolderName gui=italic,bold
]])