diff --git a/README.md b/README.md index 5cdf0d8..7ec48a9 100644 --- a/README.md +++ b/README.md @@ -414,41 +414,6 @@ GitSings provides some commands for displaying git stuff: |\wr |remove workspace folder| |\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) @@ -457,6 +422,7 @@ Rename |\vt| switch display of virtual text| |\xx| Open diagnostics window| |gR | lsp references | +|\ca | code action menu | #### Sessions diff --git a/lua/lazy-load.lua b/lua/lazy-load.lua index 0817f27..68dc3c2 100644 --- a/lua/lazy-load.lua +++ b/lua/lazy-load.lua @@ -17,14 +17,6 @@ require("lazy").setup({ priority = 400 }, -- neovim lsp plugins and depencencies - { - 'nvimdev/lspsaga.nvim', - config = function() - require('lspsaga').setup({ - lightbulb = { enable = false } - }) - end, - }, { "rcarriga/nvim-dap-ui", dependencies = { "mfussenegger/nvim-dap", "nvim-neotest/nvim-nio", "theHamsta/nvim-dap-virtual-text" }, @@ -143,20 +135,17 @@ require("lazy").setup({ -- OPTIONAL: -- `nvim-notify` is only needed, if you want to use the notification view. -- If not available, we use `mini` as the fallback - "rcarriga/nvim-notify", } - }, - { - 'rcarriga/nvim-notify', - opts = require('plugins.nvim-notify').config + --"rcarriga/nvim-notify", } + } }, { 'MeanderingProgrammer/markdown.nvim', main = "render-markdown", 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.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', diff --git a/lua/plugins/nvim-notify.lua b/lua/plugins/nvim-notify.lua deleted file mode 100644 index 92b332d..0000000 --- a/lua/plugins/nvim-notify.lua +++ /dev/null @@ -1,5 +0,0 @@ -return { - config = { - timeout = 2500 - } -}