mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-07-25 13:14:42 +02:00
Native LSP, more Lua, less CoC
This commit is contained in:
parent
56f65b12a4
commit
474f961b2a
39 changed files with 906 additions and 671 deletions
31
lua/plugins/nvimtree-config.lua
Normal file
31
lua/plugins/nvimtree-config.lua
Normal file
|
@ -0,0 +1,31 @@
|
|||
local tree_cb = require'nvim-tree.config'.nvim_tree_callback
|
||||
vim.g.nvim_tree_bindings = {
|
||||
-- mappings
|
||||
["<CR>"] = tree_cb("edit"),
|
||||
["l"] = tree_cb("edit"),
|
||||
["o"] = tree_cb("edit"),
|
||||
["<2-LeftMouse>"] = tree_cb("edit"),
|
||||
["<2-RightMouse>"] = tree_cb("cd"),
|
||||
["<C-]>"] = tree_cb("cd"),
|
||||
["v"] = tree_cb("vsplit"),
|
||||
["s"] = tree_cb("split"),
|
||||
["<C-t>"] = tree_cb("tabnew"),
|
||||
["h"] = tree_cb("close_node"),
|
||||
["<BS>"] = tree_cb("close_node"),
|
||||
["<S-CR>"] = tree_cb("close_node"),
|
||||
["<Tab>"] = tree_cb("preview"),
|
||||
["I"] = tree_cb("toggle_ignored"),
|
||||
["H"] = tree_cb("toggle_dotfiles"),
|
||||
["R"] = tree_cb("refresh"),
|
||||
["a"] = tree_cb("create"),
|
||||
["d"] = tree_cb("remove"),
|
||||
["r"] = tree_cb("rename"),
|
||||
["<C-r>"] = tree_cb("full_rename"),
|
||||
["x"] = tree_cb("cut"),
|
||||
["c"] = tree_cb("copy"),
|
||||
["p"] = tree_cb("paste"),
|
||||
["[c"] = tree_cb("prev_git_item"),
|
||||
["]c"] = tree_cb("next_git_item"),
|
||||
["-"] = tree_cb("dir_up"),
|
||||
["q"] = tree_cb("close"),
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue