add NvimTree bg , make its versplit transparent

This commit is contained in:
siduck76 2021-05-07 13:36:54 +05:30
parent d8399c638f
commit 7cc75ffe1d
4 changed files with 3 additions and 5 deletions

View File

@ -17,9 +17,6 @@ map("v", "x", [=[ "_x ]=], opt)
]]
-- copy any selected text with pressing y
map("", "<leader>c", '"+y')
-- OPEN TERMINALS --
map("n", "<C-l>", [[<Cmd>vnew term://bash <CR>]], opt) -- open term over right
map("n", "<C-x>", [[<Cmd> split term://bash | resize 10 <CR>]], opt) -- open term bottom
@ -33,4 +30,3 @@ map("n", "<leader>n", [[ <Cmd> set nu!<CR>]], opt)
-- toggle truezen.nvim's ataraxis and minimalist mode
map("n", "<leader>z", [[ <Cmd> TZAtaraxis<CR>]], opt)
map("n", "<leader>m", [[ <Cmd> TZMinimalist<CR>]], opt)

View File

@ -44,6 +44,7 @@ for k, lang in pairs(servers) do
}
end
-- remove the lsp servers with their configs you don want
local vls_binary = '/usr/local/bin/vls'
require'lspconfig'.vls.setup {
cmd = {vls_binary},

View File

@ -87,3 +87,5 @@ g.nvim_tree_bindings = {
cmd "hi NvimTreeFolderIcon guifg = #61afef"
cmd "hi NvimTreeFolderName guifg = #61afef"
cmd "hi NvimTreeIndentMarker guifg=#383c44"
cmd "hi NvimTreeNormal guibg=#1b1f27"
cmd "hi NvimTreeVertSplit guifg=#1e222a"

View File

@ -46,7 +46,6 @@ return require("packer").startup(
-- discord rich presence
--use "andweeb/presence.nvim"
use {"lukas-reineke/indent-blankline.nvim", branch = "lua"}
end
)