diff options
| author | srdusr <trevorgray@srdusr.com> | 2023-09-06 23:38:41 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2023-09-06 23:38:41 +0200 |
| commit | 6932db57d88ce2bab25c488f6a4afe37d19cccc7 (patch) | |
| tree | 2349c1ca18d881e311868a442dc8535c681086eb /lua/plugins | |
| parent | 4d244e6d32dd8abb3847eefac073e609dca89f68 (diff) | |
| download | dotfiles-6932db57d88ce2bab25c488f6a4afe37d19cccc7.tar.gz dotfiles-6932db57d88ce2bab25c488f6a4afe37d19cccc7.zip | |
Disable webdev_colors for now
Diffstat (limited to 'lua/plugins')
| -rw-r--r-- | lua/plugins/nvim-tree.lua | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/lua/plugins/nvim-tree.lua b/lua/plugins/nvim-tree.lua index c6bec35..f29cf83 100644 --- a/lua/plugins/nvim-tree.lua +++ b/lua/plugins/nvim-tree.lua @@ -6,7 +6,7 @@ --- To see default mappings `:nvim-tree-default-mappings` local icons = { - webdev_colors = true, + --webdev_colors = true, git_placement = 'signcolumn', modified_placement = 'after', padding = ' ', @@ -312,12 +312,12 @@ local function edit_and_close(node) api.tree.close() end -vim.api.nvim_create_augroup('NvimTreeRefresh', {}) -vim.api.nvim_create_autocmd('BufEnter', { - pattern = 'NvimTree_1', - command = 'NvimTreeRefresh', - group = 'NvimTreeRefresh', -}) +--vim.api.nvim_create_augroup('NvimTreeRefresh', {}) +--vim.api.nvim_create_autocmd('BufEnter', { +-- pattern = 'NvimTree_1', +-- command = 'NvimTreeRefresh', +-- group = 'NvimTreeRefresh', +--}) vim.api.nvim_create_autocmd({ 'CursorHold' }, { pattern = 'NvimTree*', @@ -351,6 +351,8 @@ vim.api.nvim_create_autocmd({ 'BufLeave', 'WinClosed', 'WinLeave' }, { -- Highlight Groups vim.api.nvim_command('highlight NvimTreeNormal guibg=none') +vim.api.nvim_command('highlight NvimTreeNormalFloat guibg=none') +vim.api.nvim_command('highlight NvimTreeEndOfBuffer guibg=none') --(NonText) vim.api.nvim_command('highlight NvimTreeCursorLine guibg=#50fa7b guifg=#000000') vim.api.nvim_command('highlight NvimTreeSymlinkFolderName guifg=#f8f8f2') vim.api.nvim_command('highlight NvimTreeFolderName guifg=#f8f8f2') |
