aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeander <80996591+m0ntagur@users.noreply.github.com>2022-08-13 00:28:53 +0200
committerGitHub <noreply@github.com>2022-08-13 00:28:53 +0200
commit63b13764d097882dbcf9c5fd77405e3924d7ebb8 (patch)
treec3e45a28d6304b67515ce25e69dd43ac4575689c
parentecc4627dbce418e5a2786c76042af9302f33c6e5 (diff)
Delete lspsaga.lua
-rw-r--r--lspsaga.lua16
1 files changed, 0 insertions, 16 deletions
diff --git a/lspsaga.lua b/lspsaga.lua
deleted file mode 100644
index e215b30..0000000
--- a/lspsaga.lua
+++ /dev/null
@@ -1,16 +0,0 @@
-local status, saga = pcall(require, "lspsaga")
-if (not status) then return end
-
-saga.init_lsp_saga {
- server_filetype_map = {
- typescript = 'typescript'
- }
-}
-
-local opts = { noremap = true, silent = true }
-vim.keymap.set('n', '<C-j>', '<Cmd>Lspsaga diagnostic_jump_next<CR>', opts)
-vim.keymap.set('n', 'K', '<Cmd>Lspsaga hover_doc<CR>', opts)
-vim.keymap.set('n', 'gd', '<Cmd>Lspsaga lsp_finder<CR>', opts)
-vim.keymap.set('i', '<C-k>', '<Cmd>Lspsaga signature_help<CR>', opts)
-vim.keymap.set('n', 'gp', '<Cmd>Lspsaga preview_definition<CR>', opts)
-vim.keymap.set('n', 'gr', '<Cmd>Lspsaga rename<CR>', opts)