From 3c238894c5b6f15c5f27cea8bd3785eb0f1ebf0f Mon Sep 17 00:00:00 2001 From: HampusM Date: Sun, 18 Sep 2022 11:39:25 +0200 Subject: add config --- lua/maps/NERDtree.lua | 2 + lua/maps/auto_close.lua | 24 ++++++++ lua/maps/buffer.lua | 6 ++ lua/maps/coc.lua | 160 ++++++++++++++++++++++++++++++++++++++++++++++++ lua/maps/find.lua | 8 +++ lua/maps/init.lua | 7 +++ lua/maps/terminal.lua | 37 +++++++++++ 7 files changed, 244 insertions(+) create mode 100644 lua/maps/NERDtree.lua create mode 100644 lua/maps/auto_close.lua create mode 100644 lua/maps/buffer.lua create mode 100644 lua/maps/coc.lua create mode 100644 lua/maps/find.lua create mode 100644 lua/maps/init.lua create mode 100644 lua/maps/terminal.lua (limited to 'lua/maps') diff --git a/lua/maps/NERDtree.lua b/lua/maps/NERDtree.lua new file mode 100644 index 0000000..15c933d --- /dev/null +++ b/lua/maps/NERDtree.lua @@ -0,0 +1,2 @@ +vim.api.nvim_set_keymap("n", "", ":NERDTreeToggle", + {silent = true, noremap = true}) diff --git a/lua/maps/auto_close.lua b/lua/maps/auto_close.lua new file mode 100644 index 0000000..9da8c5f --- /dev/null +++ b/lua/maps/auto_close.lua @@ -0,0 +1,24 @@ +vim.api.nvim_set_keymap("i", "\"", + "\"\"", + {silent = true, noremap = true}) + +vim.api.nvim_set_keymap("i", "'", + "''", + {silent = true, noremap = true}) + +vim.api.nvim_set_keymap("i", "(", + "()", + {silent = true, noremap = true}) + +vim.api.nvim_set_keymap("i", "[", + "[]", + {silent = true, noremap = true}) + +vim.api.nvim_set_keymap("i", "{", + "{}", + {silent = true, noremap = true}) + +vim.api.nvim_set_keymap("i", "{", + "{}O", + {silent = true, noremap = true}) + diff --git a/lua/maps/buffer.lua b/lua/maps/buffer.lua new file mode 100644 index 0000000..99a11f6 --- /dev/null +++ b/lua/maps/buffer.lua @@ -0,0 +1,6 @@ +-- Close the current buffer +vim.api.nvim_set_keymap( + "n", + "q", ":lua close_current_buffer()", + { silent = true, noremap = true } +) diff --git a/lua/maps/coc.lua b/lua/maps/coc.lua new file mode 100644 index 0000000..d7b2b3c --- /dev/null +++ b/lua/maps/coc.lua @@ -0,0 +1,160 @@ +-- Tab completion +--[[ +vim.api.nvim_set_keymap("i", "", + "coc#pum:visible() ? coc#pum#next(1) : v:lua.check_back_space() ? '' : coc#refresh()", + {silent = true, expr = true, noremap = true}) + +vim.api.nvim_set_keymap("i", "", "pumvisible() ? '' : ''", + {expr = true, noremap = true}) +]] + +vim.cmd( +[[ +inoremap + \ coc#pum#visible() ? coc#pum#next(1): + \ v:lua.check_back_space() ? "\" : + \ coc#refresh() + +inoremap + \ coc#pum#visible() ? coc#pum#prev(1): + \ v:lua.check_back_space() ? "\" : + \ coc#refresh() +]] +) + +-- Use to trigger completion +vim.api.nvim_set_keymap("i", "", "coc#refresh()", + {silent = true, expr = true, noremap = true}) + +-- Make auto-select the first completion item and notify coc.nvim to +-- format on enter, could be remapped by other vim plugin +vim.api.nvim_set_keymap("i", "", + "pumvisible() ? coc#_select_confirm() : 'u=coc#on_enter()'", + {silent = true, expr = true, noremap = true}) + +-- Use `[g` and `]g` to navigate diagnostics +-- Use `:CocDiagnostics` to get all diagnostics of current buffer in location list. +vim.api.nvim_set_keymap("n", "[g", "(coc-diagnostic-prev)", {silent = true}) +vim.api.nvim_set_keymap("n", "]g", "(coc-diagnostic-next)", {silent = true}) + +-- GoTo code navigation. +vim.api.nvim_set_keymap("n", "gd", "(coc-definition)", {silent = true}) +vim.api.nvim_set_keymap("n", "gy", "(coc-type-definition)", {silent = true}) +vim.api.nvim_set_keymap("n", "gi", "(coc-implementation)", {silent = true}) +vim.api.nvim_set_keymap("n", "gr", "(coc-references)", {silent = true}) + +-- Use K to show documentation in preview window. +vim.api.nvim_set_keymap("n", "K", ":call v:lua.show_documentation()", + {silent = true, noremap = true}) + +-- Symbol renaming. +vim.api.nvim_set_keymap("n", "rn", "(coc-rename)", {}) + +vim.api.nvim_set_keymap( + "n", + "d", ":CocCommand rust-analyzer.openDocs", + { silent = true, noremap = true } +) + +-- Formatting selected code. +-- vim.api.nvim_set_keymap("x", "f", "(coc-format-selected)", {}) +-- vim.api.nvim_set_keymap("n", "f", "(coc-format-selected)", {}) + +-- Remap and for scroll float windows/popups. +vim.api.nvim_set_keymap( + "n", + "", + "coc#float#has_scroll() ? coc#float#scroll(1) : '\\'", + {silent = true, nowait = true, expr = true, noremap = true} +) +vim.api.nvim_set_keymap( + "n", + "", + "coc#float#has_scroll() ? coc#float#scroll(0) : '\\'", + {silent = true, nowait = true, expr = true, noremap = true} +) +vim.api.nvim_set_keymap( + "i", + "", + "coc#float#has_scroll() ? '\\=coc#float#scroll(1)\\' : '\\'", + {silent = true, nowait = true, expr = true, noremap = true} +) +vim.api.nvim_set_keymap( + "i", + "", + "coc#float#has_scroll() ? '\\=coc#float#scroll(0)\\' : '\\'", + {silent = true, nowait = true, expr = true, noremap = true} +) +vim.api.nvim_set_keymap( + "v", + "", + "coc#float#has_scroll() ? coc#float#scroll(1) : '\\'", + {silent = true, nowait = true, expr = true, noremap = true} +) +vim.api.nvim_set_keymap( + "v", + "", + "coc#float#has_scroll() ? coc#float#scroll(0) : '\\'", + {silent = true, nowait = true, expr = true, noremap = true} +) + +--[[ +" Applying codeAction to the selected region. +" Example: `aap` for current paragraph +xmap a (coc-codeaction-selected) +nmap a (coc-codeaction-selected) + +" Remap keys for applying codeAction to the current buffer. +nmap ac (coc-codeaction) +" Apply AutoFix to problem on the current line. +nmap qf (coc-fix-current) + +" Map function and class text objects +" NOTE: Requires 'textDocument.documentSymbol' support from the language server. +xmap if (coc-funcobj-i) +omap if (coc-funcobj-i) +xmap af (coc-funcobj-a) +omap af (coc-funcobj-a) +xmap ic (coc-classobj-i) +omap ic (coc-classobj-i) +xmap ac (coc-classobj-a) +omap ac (coc-classobj-a) + +" Use CTRL-S for selections ranges. +" Requires 'textDocument/selectionRange' support of language server. +nmap (coc-range-select) +xmap (coc-range-select) + +" Add `:Format` command to format current buffer. +command! -nargs=0 Format :call CocAction('format') + +" Add `:Fold` command to fold current buffer. +command! -nargs=? Fold :call CocAction('fold', ) + +" Add `:OR` command for organize imports of the current buffer. +command! -nargs=0 OR :call CocActionAsync('runCommand', 'editor.action.organizeImport') + +" Add (Neo)Vim's native statusline support. +" NOTE: Please see `:h coc-status` for integrations with external plugins that +" provide custom statusline: lightline.vim, vim-airline. +set statusline^=%{coc#status()}%{get(b:,'coc_current_function','')} + +" Mappings for CoCList +" Show all diagnostics. +nnoremap a :CocList diagnostics +" Manage extensions. +nnoremap e :CocList extensions +" Show commands. +nnoremap c :CocList commands +" Find symbol of current document. +nnoremap o :CocList outline +" Search workspace symbols. +nnoremap s :CocList -I symbols +" Do default action for next item. +nnoremap j :CocNext +" Do default action for previous item. +nnoremap k :CocPrev +" Resume latest coc list. +nnoremap p :CocListResume + +]] diff --git a/lua/maps/find.lua b/lua/maps/find.lua new file mode 100644 index 0000000..5d4bfbe --- /dev/null +++ b/lua/maps/find.lua @@ -0,0 +1,8 @@ +vim.api.nvim_set_keymap("n", "p", ":Files", { silent = true, noremap = true }) + +vim.api.nvim_set_keymap("n", "b", ":Buffers", { silent = true, noremap = true }) + +vim.api.nvim_set_keymap("n", "c", ":Commits", { silent = true, noremap = true }) + +vim.api.nvim_set_keymap("n", "f", ":Ag ", { noremap = true }) + diff --git a/lua/maps/init.lua b/lua/maps/init.lua new file mode 100644 index 0000000..43f1632 --- /dev/null +++ b/lua/maps/init.lua @@ -0,0 +1,7 @@ +require("maps.coc") +require("maps.NERDtree") +require("maps.terminal") +require("maps.auto_close") +require("maps.find") +require("maps.buffer") + diff --git a/lua/maps/terminal.lua b/lua/maps/terminal.lua new file mode 100644 index 0000000..cf6f999 --- /dev/null +++ b/lua/maps/terminal.lua @@ -0,0 +1,37 @@ +vim.api.nvim_set_keymap( + "n", + "t", + ":lua toggle_terminal(vim.g.terminal_height)", + {silent = true, noremap = true} +) + +vim.api.nvim_set_keymap( + "i", + "t", + ":lua toggle_terminal(vim.g.terminal_height)", + {silent = true, noremap = true} +) + +vim.api.nvim_set_keymap( + "t", + "t", + ":lua toggle_terminal(vim.g.terminal_height)", + {silent = true, noremap = true} +) + +-- Terminal go back to normal mode +vim.api.nvim_set_keymap( + "t", + "", + "", + {noremap = true} +) + +vim.api.nvim_set_keymap( + "t", + ":q!", + ":q!", + {noremap = true} +) + + -- cgit v1.2.3-18-g5258