add NvimTree bg , make its versplit transparent
This commit is contained in:
parent
d8399c638f
commit
7cc75ffe1d
|
@ -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)
|
||||
|
||||
|
|
|
@ -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},
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -46,7 +46,6 @@ return require("packer").startup(
|
|||
-- discord rich presence
|
||||
--use "andweeb/presence.nvim"
|
||||
|
||||
|
||||
use {"lukas-reineke/indent-blankline.nvim", branch = "lua"}
|
||||
end
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue