feat: add spell check
This commit is contained in:
parent
2bed6f50c0
commit
d42d294c95
122 changed files with 454 additions and 5657 deletions
|
|
@ -5,7 +5,6 @@ local term_opts = { silent = true }
|
|||
-- Shorten function name
|
||||
local keymap = vim.api.nvim_set_keymap
|
||||
|
||||
|
||||
keymap("n", "c", ":CodeActionMenu<CR>", opts)
|
||||
keymap("n", "<F5>", ':lua require("dap").toggle_breakpoint()<CR>', opts)
|
||||
keymap("n", "<F6>", ':lua require("dap").step_over()<CR>', opts)
|
||||
|
|
@ -17,7 +16,13 @@ keymap("n", "<F10>", ':lua require("dap").continue()<CR> :lua require("dapui").t
|
|||
keymap("n", "t", ':lua require("nvim-tree").toggle()<CR>', opts)
|
||||
keymap("n", "f", ':lua require("nvim-tree").focus()<CR>', opts)
|
||||
|
||||
keymap("n", "<F1>", ':BufferLineMoveNext<CR>', opts)
|
||||
keymap("n", "<F2>", ':BufferLineMovePrev<CR>', opts)
|
||||
keymap("n", "<F1>", ":BufferPrev<CR>", opts)
|
||||
keymap("n", "<F2>", ":BufferNext<CR>", opts)
|
||||
|
||||
keymap("n", "<F4>", ':lua vim.lsp.buf.format { async = true }<CR>', opts)
|
||||
keymap("n", "<F4>", ":lua vim.lsp.buf.format { async = true }<CR>", opts)
|
||||
|
||||
local builtin = require("telescope.builtin")
|
||||
vim.keymap.set("n", "ff", builtin.find_files, {})
|
||||
vim.keymap.set("n", "fg", builtin.live_grep, {})
|
||||
vim.keymap.set("n", "fb", builtin.buffers, {})
|
||||
vim.keymap.set("n", "fh", builtin.help_tags, {})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue