diff options
Diffstat (limited to '.config/nvim/lua/plugins.lua')
-rw-r--r-- | .config/nvim/lua/plugins.lua | 33 |
1 files changed, 3 insertions, 30 deletions
diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua index 714a8f5..b34398c 100644 --- a/.config/nvim/lua/plugins.lua +++ b/.config/nvim/lua/plugins.lua @@ -62,6 +62,8 @@ local PKGS = { { url = "https://github.com/Hoffs/omnisharp-extended-lsp.nvim.git" }; { url = "https://github.com/lewis6991/gitsigns.nvim.git" }; { url = "https://github.com/jose-elias-alvarez/null-ls.nvim.git" }; + { url = "https://github.com/mfussenegger/nvim-dap.git" }; + { url = "https://github.com/rcarriga/nvim-dap-ui.git" }; -- Dev container { url = "https://codeberg.org/esensar/nvim-dev-container.git" }; @@ -150,36 +152,7 @@ local function init_plugins() vim.o.foldenable = true require("devcontainer").setup({}) - require("renamer").setup({ - -- The popup title, shown if `border` is true - title = "Rename"; - -- The padding around the popup content - padding = { top = 0; left = 0; bottom = 0; right = 0 }; - -- The minimum width of the popup - min_width = 15; - -- The maximum width of the popup - max_width = 45; - -- Whether or not to shown a border around the popup - border = true; - -- The characters which make up the border - border_chars = { "─"; "│"; "─"; "│"; "╭"; "╮"; "╯"; "╰" }; - -- Whether or not to highlight the current word references through LSP - show_refs = true; - -- Whether or not to add resulting changes to the quickfix list - with_qf_list = true; - -- Whether or not to enter the new name through the UI or Neovim's `input` - -- prompt - with_popup = true; - -- Custom handler to be run after successfully renaming the word. Receives - -- the LSP 'textDocument/rename' raw response as its parameter. - handler = nil; - }) - - require("which-key").setup({ - -- your configuration comes here - -- or leave it empty to use the default settings - -- refer to the configuration section below - }) + require("which-key").setup({}) require("nvim-treesitter.configs").setup({ ensure_installed = { "javascript"; "typescript"; "lua"; "c_sharp"; "jsonc" }; |