|
@@ -43,10 +43,10 @@ map("n", "<leader>wq", ":wqa!<CR>", opt)
|
|
|
map("n", "qq", ":q!<CR>", opt)
|
|
|
map("n", "<leader>q", ":qa!<CR>", opt)
|
|
|
-- 上下滚动浏览
|
|
|
-map("n", "<C-j>", "5j", opt)
|
|
|
-map("n", "<C-k>", "5k", opt)
|
|
|
-map("v", "<C-j>", "5j", opt)
|
|
|
-map("v", "<C-k>", "5k", opt)
|
|
|
+map("n", "<A-j>", "5j", opt)
|
|
|
+map("n", "<A-k>", "5k", opt)
|
|
|
+map("v", "<A-j>", "5j", opt)
|
|
|
+map("v", "<A-k>", "5k", opt)
|
|
|
|
|
|
-- Telescope 查找文件
|
|
|
-- 文件名查找
|
|
@@ -59,6 +59,10 @@ map("n", "<leader>g", ":Telescope git_files<CR>", opt)
|
|
|
map("n", "<leader>p", ":Telescope projects<CR>", opt)
|
|
|
-- packer update
|
|
|
map("n", "<leader>u", ":PackerUpdate<CR>", opt)
|
|
|
+
|
|
|
+-- prettier
|
|
|
+map("n", "<leader>cf", ":Prettier<CR>", opt)
|
|
|
+
|
|
|
-- 插件快捷键
|
|
|
local pluginKeys = {}
|
|
|
|
|
@@ -135,4 +139,59 @@ pluginKeys.nvimTreeList = { -- 打开文件或文件夹
|
|
|
action = "dir_up"
|
|
|
}}
|
|
|
|
|
|
+-- lsp 快捷键
|
|
|
+pluginKeys.lspList = function(bufnr)
|
|
|
+ -- bufmap(bufnr, "n", "<leader>rn", "<cmd>lua vim.lsp.buf.rename()<CR>", opt)
|
|
|
+ bufmap(bufnr, "n", "<leader>rn", "<cmd>Lspsaga rename<CR>", opt)
|
|
|
+ -- bufmap(bufnr, "n", "<leader>ca", "<cmd>lua vim.lsp.buf.cade_action()<CR>", opt)
|
|
|
+ bufmap(bufnr, "n", "<leader>ca", "<cmd>Lspsaga cade_action<CR>", opt)
|
|
|
+ -- go to
|
|
|
+ -- bufmap(bufnr, "n", "gd", "<Cmd>lua vim.lsp.buf.definition()<CR>", opt)
|
|
|
+ bufmap(bufnr, "n", "gd", "<cmd>Lspsaga goto_definition<CR>", opt)
|
|
|
+ -- bufmap(bufnr, "n", "gd", "<cmd>Lspsaga peek_definition<CR>", opt)
|
|
|
+ bufmap(bufnr, "n", "gt", "<cmd>Lspsaga goto_type_definition<CR>", opt)
|
|
|
+ bufmap(bufnr, "n", "gD", "<cmd>lua vim.lsp.buf.declaration()<CR>", opt)
|
|
|
+ -- bufmap(bufnr, "n", "gh", "<cmd>lua vim.lsp.buf.hover()<CR>", opt)
|
|
|
+ bufmap(bufnr, "n", "gh", "<cmd>Lspsaga hover_doc<CR>", opt)
|
|
|
+ bufmap(bufnr, "n", "gi", "<cmd>lua vim.lsp.buf.implementation()<CR>", opt)
|
|
|
+ -- bufmap(bufnr, "n", "gr", "<cmd>lua vim.lsp.buf.references()<CR>", opt)
|
|
|
+ bufmap(bufnr, "n", "gr", "<cmd>Lspsaga lsp_finder<CR>", opt)
|
|
|
+ -- diagnostic
|
|
|
+ -- bufmap(bufnr, "n", "go", "<cmd>lua vim.diagnostic.open_float()<CR>", opt)
|
|
|
+ bufmap(bufnr, "n", "go", "<cmd>Lspsaga show_line_diagnostics<CR>", opt)
|
|
|
+ -- bufmap(bufnr, "n", "gn", "<cmd>lua vim.diagnostic.goto_next()<CR>", opt)
|
|
|
+ bufmap(bufnr, "n", "gn", "<cmd>Lspsaga diagnostic_jump_next<CR>", opt)
|
|
|
+ -- bufmap(bufnr, "n", "gp", "<cmd>lua vim.diagnostic.goto_prev()<CR>", opt)
|
|
|
+ bufmap(bufnr, "n", "gp", "<cmd>Lspsaga diagnostic_jump_prev<CR>", opt)
|
|
|
+ bufmap(bufnr, "n", "<leader>f", "<cmd>lua vim.lsp.buf.format({ async = true })<CR>", opt)
|
|
|
+ bufmap(bufnr, "n", [[<M-\>]], "<cmd>Lspsaga term_toggle<CR>", opt)
|
|
|
+ bufmap(bufnr, "t", [[<M-\>]], "<cmd>Lspsaga term_toggle<CR>", opt)
|
|
|
+end
|
|
|
+
|
|
|
+-- nvim-cmp 自动补全
|
|
|
+pluginKeys.cmp = function(cmp)
|
|
|
+ return {
|
|
|
+ -- 出现补全
|
|
|
+ ["<A-.>"] = cmp.mapping(cmp.mapping.complete(), {"i", "c"}),
|
|
|
+ -- 取消
|
|
|
+ ["<A-,>"] = cmp.mapping({
|
|
|
+ i = cmp.mapping.abort(),
|
|
|
+ c = cmp.mapping.close()
|
|
|
+ }),
|
|
|
+ -- 上一个
|
|
|
+ ["<C-k>"] = cmp.mapping.select_prev_item(),
|
|
|
+ -- 下一个
|
|
|
+ ["<C-j>"] = cmp.mapping.select_next_item(),
|
|
|
+ -- 确认
|
|
|
+ ["<CR>"] = cmp.mapping.confirm({
|
|
|
+ select = true,
|
|
|
+ behavior = cmp.ConfirmBehavior.Replace
|
|
|
+ }),
|
|
|
+ -- 如果窗口内容太多,可以滚动
|
|
|
+ ["<C-u>"] = cmp.mapping(cmp.mapping.scroll_docs(-4), {"i", "c"}),
|
|
|
+ ["<C-d>"] = cmp.mapping(cmp.mapping.scroll_docs(4), {"i", "c"}),
|
|
|
+ }
|
|
|
+end
|
|
|
+
|
|
|
+
|
|
|
return pluginKeys
|