navigator
spike 2 years ago
parent 1423db18ba
commit 51e6c7876f

1
.gitignore vendored

@ -1,2 +1,3 @@
plugin
spell
_main

@ -21,7 +21,6 @@ M.general = {
-- luasnip change choice
["<C-u>"] = {"<Plug>luasnip-next-choice", "change luasnip choice"},
},
n = {
@ -80,6 +79,13 @@ M.general = {
"toggle theme",
},
-- luasnip edit snippets
["<leader>se"] = {
function()
require("luasnip.loaders").edit_snippet_files()
end,
"luasnip edit snippets"},
-- Allow moving the cursor through wrapped lines with j, k, <Up> and <Down>
-- http://www.reddit.com/r/vim/comments/2k4cbr/problem_with_gj_and_gk/
-- empty mode is same as using <cmd> :map
@ -397,7 +403,7 @@ M.nvterm = {
function()
require("nvterm.terminal").toggle "float"
end,
"toggle floating term",
"toggle floatinvg term",
},
["<A-h>"] = {
@ -406,13 +412,6 @@ M.nvterm = {
end,
"toggle horizontal term",
},
["<A-v>"] = {
function()
require("nvterm.terminal").toggle "vertical"
end,
"toggle vertical term",
},
},
n = {

@ -35,5 +35,8 @@ return {
}
end
},
["honza/vim-snippets"] = {}
["honza/vim-snippets"] = {
module = {"cmp", "cmp_nvim_lsp"},
event = "InsertEnter",
}
}

Loading…
Cancel
Save