aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins.lua
diff options
context:
space:
mode:
authorLuca Matei Pintilie <lucafulger@gmail.com>2023-03-12 20:34:28 +0000
committerLuca Matei Pintilie <lucafulger@gmail.com>2023-03-12 20:34:28 +0000
commitb96a812bffa3bc2926c08cc62656bf8dbbe827fd (patch)
treeb3a6b804c19f60643e283b4ad76b611d5dbd9832 /.config/nvim/lua/plugins.lua
parentafafa3c335b98b8beead13eb1b61fa469fd4aff2 (diff)
downloaddotfiles-b96a812bffa3bc2926c08cc62656bf8dbbe827fd.tar
dotfiles-b96a812bffa3bc2926c08cc62656bf8dbbe827fd.tar.gz
dotfiles-b96a812bffa3bc2926c08cc62656bf8dbbe827fd.tar.bz2
dotfiles-b96a812bffa3bc2926c08cc62656bf8dbbe827fd.tar.lz
dotfiles-b96a812bffa3bc2926c08cc62656bf8dbbe827fd.tar.xz
dotfiles-b96a812bffa3bc2926c08cc62656bf8dbbe827fd.tar.zst
dotfiles-b96a812bffa3bc2926c08cc62656bf8dbbe827fd.zip
Add debugging to neovim config
Diffstat (limited to '.config/nvim/lua/plugins.lua')
-rw-r--r--.config/nvim/lua/plugins.lua33
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" };