remove lspsaga, nvim-notify
This commit is contained in:
parent
d1f5a71098
commit
2986951b8b
3 changed files with 5 additions and 55 deletions
36
README.md
36
README.md
|
@ -414,41 +414,6 @@ GitSings provides some commands for displaying git stuff:
|
||||||
|\<leader\>wr |remove workspace folder|
|
|\<leader\>wr |remove workspace folder|
|
||||||
|\<leader\>wl | list workspace folders |
|
|\<leader\>wl | list workspace folders |
|
||||||
|
|
||||||
#### Lspsaga plugin
|
|
||||||
|
|
||||||
Display element (function or whatever?) hierarchy
|
|
||||||
```bash
|
|
||||||
:Lspsaga incoming_calls and :Lspsaga outgoing_calls
|
|
||||||
```
|
|
||||||
Show avaliable code actions for current line
|
|
||||||
```bash
|
|
||||||
:Lspsaga code_action
|
|
||||||
```
|
|
||||||
Element definition
|
|
||||||
```text
|
|
||||||
Invoke by running :Lspsaga peek_definition and :Lspsaga peek_type_definition. Layout is drawer and is currently the only one available. If you want to go to the definition, use :Lspsaga goto_definition and :Lspsaga goto_type_definition
|
|
||||||
```
|
|
||||||
Finder - find current element over all files
|
|
||||||
```bash
|
|
||||||
:Lspsaga finder
|
|
||||||
```
|
|
||||||
Floating terminal
|
|
||||||
```bash
|
|
||||||
:Lspsaga term_toggle
|
|
||||||
```
|
|
||||||
Show hover doc (Use `:Lspsaga hover_doc ++keep` if you want to keep the hover window.)
|
|
||||||
```bash
|
|
||||||
:Lspsaga hover_doc
|
|
||||||
```
|
|
||||||
Outline
|
|
||||||
```bash
|
|
||||||
:Lspsaga outline
|
|
||||||
```
|
|
||||||
Rename
|
|
||||||
```bash
|
|
||||||
:Lspsaga rename
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
#### LSP diagnostics (custom and trouble.nvim)
|
#### LSP diagnostics (custom and trouble.nvim)
|
||||||
|
|
||||||
|
@ -457,6 +422,7 @@ Rename
|
||||||
|\<leader\>vt| switch display of virtual text|
|
|\<leader\>vt| switch display of virtual text|
|
||||||
|\<leader\>xx| Open diagnostics window|
|
|\<leader\>xx| Open diagnostics window|
|
||||||
|gR | lsp references |
|
|gR | lsp references |
|
||||||
|
|\<space\>ca | code action menu |
|
||||||
|
|
||||||
#### Sessions
|
#### Sessions
|
||||||
|
|
||||||
|
|
|
@ -17,14 +17,6 @@ require("lazy").setup({
|
||||||
priority = 400
|
priority = 400
|
||||||
},
|
},
|
||||||
-- neovim lsp plugins and depencencies
|
-- neovim lsp plugins and depencencies
|
||||||
{
|
|
||||||
'nvimdev/lspsaga.nvim',
|
|
||||||
config = function()
|
|
||||||
require('lspsaga').setup({
|
|
||||||
lightbulb = { enable = false }
|
|
||||||
})
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"rcarriga/nvim-dap-ui",
|
"rcarriga/nvim-dap-ui",
|
||||||
dependencies = { "mfussenegger/nvim-dap", "nvim-neotest/nvim-nio", "theHamsta/nvim-dap-virtual-text" },
|
dependencies = { "mfussenegger/nvim-dap", "nvim-neotest/nvim-nio", "theHamsta/nvim-dap-virtual-text" },
|
||||||
|
@ -143,20 +135,17 @@ require("lazy").setup({
|
||||||
-- OPTIONAL:
|
-- OPTIONAL:
|
||||||
-- `nvim-notify` is only needed, if you want to use the notification view.
|
-- `nvim-notify` is only needed, if you want to use the notification view.
|
||||||
-- If not available, we use `mini` as the fallback
|
-- If not available, we use `mini` as the fallback
|
||||||
"rcarriga/nvim-notify", }
|
--"rcarriga/nvim-notify", }
|
||||||
},
|
}
|
||||||
{
|
|
||||||
'rcarriga/nvim-notify',
|
|
||||||
opts = require('plugins.nvim-notify').config
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'MeanderingProgrammer/markdown.nvim',
|
'MeanderingProgrammer/markdown.nvim',
|
||||||
main = "render-markdown",
|
main = "render-markdown",
|
||||||
opts = {},
|
opts = {},
|
||||||
name = 'render-markdown', -- Only needed if you have another plugin named markdown.nvim
|
name = 'render-markdown', -- Only needed if you have another plugin named markdown.nvim
|
||||||
--dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.nvim' }, -- if you use the mini.nvim suite
|
--dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.nvim' }, -- if you use the mini.nvim suite
|
||||||
-- dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.icons' }, -- if you use standalone mini plugins
|
-- dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.icons' }, -- if you use standalone mini plugins
|
||||||
dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-tree/nvim-web-devicons' }, -- if you prefer nvim-web-devicons
|
dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-tree/nvim-web-devicons' }, -- if you prefer nvim-web-devicons
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'nvim-lualine/lualine.nvim',
|
'nvim-lualine/lualine.nvim',
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
return {
|
|
||||||
config = {
|
|
||||||
timeout = 2500
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in a new issue