trying to fix nvim-tree wsl
This commit is contained in:
parent
0454fc29ba
commit
3ca222f05f
|
@ -152,18 +152,18 @@ command! -nargs=0 OR :call CocActionAsync('runCommand', 'editor.action.org
|
|||
|
||||
" Mappings for CoCList
|
||||
" Show all diagnostics
|
||||
nnoremap <silent><nowait> <space>CA :<C-u>CocList diagnostics<cr>
|
||||
nnoremap <silent><nowait> <leader>CA :<C-u>CocList diagnostics<cr>
|
||||
" Manage extensions
|
||||
nnoremap <silent><nowait> <space>CE :<C-u>CocList extensions<cr>
|
||||
nnoremap <silent><nowait> <leader>CE :<C-u>CocList extensions<cr>
|
||||
" Show commands
|
||||
nnoremap <silent><nowait> <space>CC :<C-u>CocList commands<cr>
|
||||
nnoremap <silent><nowait> <leader>CC :<C-u>CocList commands<cr>
|
||||
" Find symbol of current document
|
||||
nnoremap <silent><nowait> <space>CO :<C-u>CocList outline<cr>
|
||||
nnoremap <silent><nowait> <leader>CO :<C-u>CocList outline<cr>
|
||||
" Search workspace symbols
|
||||
nnoremap <silent><nowait> <space>CS :<C-u>CocList -I symbols<cr>
|
||||
nnoremap <silent><nowait> <leader>CS :<C-u>CocList -I symbols<cr>
|
||||
" Do default action for next item
|
||||
nnoremap <silent><nowait> <space>CJ :<C-u>CocNext<CR>
|
||||
nnoremap <silent><nowait> <leader>CJ :<C-u>CocNext<CR>
|
||||
" Do default action for previous item
|
||||
nnoremap <silent><nowait> <space>CK :<C-u>CocPrev<CR>
|
||||
nnoremap <silent><nowait> <leader>CK :<C-u>CocPrev<CR>
|
||||
" Resume latest coc list
|
||||
nnoremap <silent><nowait> <space>CP :<C-u>CocListResume<CR>
|
||||
nnoremap <silent><nowait> <leader>CP :<C-u>CocListResume<CR>
|
||||
|
|
|
@ -3,8 +3,9 @@ nnoremap <F5> :NvimTreeToggle<CR>
|
|||
|
||||
lua << EOF
|
||||
|
||||
local HEIGHT_RATIO = 0.8 -- You can change this
|
||||
local WIDTH_RATIO = 0.8 -- You can change this too
|
||||
-- disable netrw at the very start of your init.lua
|
||||
vim.g.loaded_netrw = 1
|
||||
vim.g.loaded_netrwPlugin = 1
|
||||
|
||||
local function my_on_attach(bufnr)
|
||||
local api = require "nvim-tree.api"
|
||||
|
@ -13,46 +14,56 @@ local function my_on_attach(bufnr)
|
|||
return { desc = "nvim-tree: " .. desc, buffer = bufnr, noremap = true, silent = true, nowait = true }
|
||||
end
|
||||
|
||||
-- default mappings
|
||||
api.config.mappings.default_on_attach(bufnr)
|
||||
-- default mappings
|
||||
-- for some reason, this does not work well when loaded with a wsl linux.
|
||||
-- attempt to index field 'config' (a nil value)
|
||||
-- which does not make sense, as config is a defined field of the Api variable
|
||||
api.config.mappings.default_on_attach(bufnr)
|
||||
|
||||
-- custom mappings
|
||||
-- cd
|
||||
vim.keymap.set('n', '<C-c>', api.tree.change_root_to_node, opts('Up'))
|
||||
vim.keymap.set('n', '?', api.tree.toggle_help, opts('Help'))
|
||||
-- custom mappings
|
||||
-- cd
|
||||
vim.keymap.set('n', '<C-c>', api.tree.change_root_to_node, opts('Up'))
|
||||
-- default is g?
|
||||
vim.keymap.set('n', '?', api.tree.toggle_help, opts('Help'))
|
||||
end
|
||||
|
||||
-- empty setup using defaults
|
||||
require("nvim-tree").setup()
|
||||
require('nvim-tree').setup({
|
||||
view = {
|
||||
float = {
|
||||
enable = true,
|
||||
open_win_config = function()
|
||||
local screen_w = vim.opt.columns:get()
|
||||
local screen_h = vim.opt.lines:get() - vim.opt.cmdheight:get()
|
||||
local window_w = screen_w * WIDTH_RATIO
|
||||
local window_h = screen_h * HEIGHT_RATIO
|
||||
local window_w_int = math.floor(window_w)
|
||||
local window_h_int = math.floor(window_h)
|
||||
local center_x = (screen_w - window_w) / 2
|
||||
local center_y = ((vim.opt.lines:get() - window_h) / 2)
|
||||
- vim.opt.cmdheight:get()
|
||||
return {
|
||||
border = 'rounded',
|
||||
relative = 'editor',
|
||||
row = center_y,
|
||||
col = center_x,
|
||||
width = window_w_int,
|
||||
height = window_h_int,
|
||||
}
|
||||
local HEIGHT_RATIO = 0.8
|
||||
local WIDTH_RATIO = 0.8
|
||||
|
||||
-- set termguicolors to enable highlight groups
|
||||
vim.opt.termguicolors = true
|
||||
|
||||
-- setup with some options
|
||||
require("nvim-tree").setup({
|
||||
sort_by = "case_sensitive",
|
||||
view = {
|
||||
float = {
|
||||
enable = true,
|
||||
open_win_config = function()
|
||||
local screen_w = vim.opt.columns:get()
|
||||
local screen_h = vim.opt.lines:get() - vim.opt.cmdheight:get()
|
||||
local window_w = screen_w * WIDTH_RATIO
|
||||
local window_h = screen_h * HEIGHT_RATIO
|
||||
local window_w_int = math.floor(window_w)
|
||||
local window_h_int = math.floor(window_h)
|
||||
local center_x = (screen_w - window_w) / 2
|
||||
local center_y = ((vim.opt.lines:get() - window_h) / 2)
|
||||
- vim.opt.cmdheight:get()
|
||||
return {
|
||||
border = 'rounded',
|
||||
relative = 'editor',
|
||||
row = center_y,
|
||||
col = center_x,
|
||||
width = window_w_int,
|
||||
height = window_h_int,
|
||||
}
|
||||
end,
|
||||
},
|
||||
width = function()
|
||||
return math.floor(vim.opt.columns:get() * WIDTH_RATIO)
|
||||
end,
|
||||
},
|
||||
width = function()
|
||||
return math.floor(vim.opt.columns:get() * WIDTH_RATIO)
|
||||
end,
|
||||
},
|
||||
on_attach = my_on_attach,
|
||||
on_attach = my_on_attach,
|
||||
})
|
||||
|
||||
EOF
|
||||
|
|
Loading…
Reference in New Issue