diff options
| author | Leander <80996591+m0ntagur@users.noreply.github.com> | 2023-07-22 15:38:23 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-22 15:38:23 +0200 |
| commit | f60b4dc97bf7204a5bc3fe316df2ce4bd709babd (patch) | |
| tree | 21bb5a36cd7f206bfef73a44fd2a0cdf2a27e82e /nvim/plugin/lspsaga.lua | |
| parent | 0561e714bb476d936e51f6e49292542712255dec (diff) | |
Delete nvim directory
Diffstat (limited to 'nvim/plugin/lspsaga.lua')
| -rw-r--r-- | nvim/plugin/lspsaga.lua | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/nvim/plugin/lspsaga.lua b/nvim/plugin/lspsaga.lua deleted file mode 100644 index e215b30..0000000 --- a/nvim/plugin/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)
|
