Add new config for neovim

This commit is contained in:
2022-01-15 20:26:28 +03:00
parent e529f6745a
commit f6d155b93f
11 changed files with 526 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
local cmd = vim.cmd
vim.g.tokyonight_style = "night"
cmd([[colorscheme tokyonight]])
cmd([[
hi NvimTreeGitNew guifg=green
hi NvimTreeGitStaged guifg=lightgreen
hi NvimTreeGitDeleted guifg=red
hi NvimTreeGitDirty guifg=lightblue
hi NvimTreeGitMerge guifg=yellow
hi NvimTreeGitIgnored guifg=gray
hi NvimTreeOpenedFolderName gui=italic,bold
]])