From c140c78d8c5fa1dfbbd7f8e3c04c83ebe38a2a51 Mon Sep 17 00:00:00 2001 From: Julien Rabier Date: Wed, 12 Jun 2024 11:16:30 +0200 Subject: [PATCH] [nvim] improve config --- .../nvim/lua/config/options.lua.tmpl | 1 - private_dot_config/nvim/lua/plugins/dap.lua | 156 ------------------ .../nvim/lua/plugins/lsp-lines.lua | 7 - 3 files changed, 164 deletions(-) delete mode 100644 private_dot_config/nvim/lua/plugins/dap.lua delete mode 100644 private_dot_config/nvim/lua/plugins/lsp-lines.lua diff --git a/private_dot_config/nvim/lua/config/options.lua.tmpl b/private_dot_config/nvim/lua/config/options.lua.tmpl index 1e6975c..1aaaccb 100644 --- a/private_dot_config/nvim/lua/config/options.lua.tmpl +++ b/private_dot_config/nvim/lua/config/options.lua.tmpl @@ -35,7 +35,6 @@ opt.expandtab = true opt.tabstop = 4 opt.shiftwidth = 4 opt.softtabstop = 4 -opt.pastetoggle = "" opt.timeoutlen = 200 -- https://github.com/folke/which-key.nvim#%EF%B8%8F-configuration opt.mouse = "a" opt.wrap = true diff --git a/private_dot_config/nvim/lua/plugins/dap.lua b/private_dot_config/nvim/lua/plugins/dap.lua deleted file mode 100644 index 1f3174d..0000000 --- a/private_dot_config/nvim/lua/plugins/dap.lua +++ /dev/null @@ -1,156 +0,0 @@ -return { - - { - "mfussenegger/nvim-dap", - event = "VeryLazy", - dependencies = { - { - "theHamsta/nvim-dap-virtual-text", - config = true, - }, - }, - config = function() - vim.fn.sign_define("DapBreakpoint", { text = "", texthl = "", linehl = "", numhl = "" }) - vim.fn.sign_define("DapBreakpointCondition", { text = "", texthl = "", linehl = "", numhl = "" }) - vim.fn.sign_define("DapBreakpointRejected", { text = "", texthl = "", linehl = "", numhl = "" }) - vim.fn.sign_define("DapLogPoint", { text = "", texthl = "", linehl = "", numhl = "" }) - vim.fn.sign_define("DapStopped", { text = "", texthl = "", linehl = "", numhl = "" }) - require("dap").defaults.fallback.terminal_win_cmd = "enew | set filetype=dap-terminal" - vim.api.nvim_create_autocmd("FileType", { - pattern = "dap-repl", - callback = function() - require("dap.ext.autocompl").attach() - end, - }) - require("which-key").register({ - ["db"] = { name = "+breakpoints" }, - ["ds"] = { name = "+steps" }, - ["dv"] = { name = "+views" }, - }) - end, - keys = { - { - "dbc", - function() - require("dap").set_breakpoint(vim.fn.input("Breakpoint condition: ")) - end, - desc = "Conditional Breakpoint", - }, - { - "dbl", - function() - require("dap").set_breakpoint(nil, nil, vim.fn.input("Log point message")) - end, - desc = "Logpoint", - }, - { - "dbr", - function() - require("dap.breakpoints").clear() - end, - desc = "Remove All", - }, - { "dbs", "Telescope dap list_breakpoints", desc = "Show All" }, - { - "dbt", - function() - require("dap").toggle_breakpoint() - end, - desc = "Toggle Breakpoint", - }, - { - "dc", - function() - require("dap").continue() - end, - desc = "Continue", - }, - { - "de", - function() - require("dap.ui.widgets").hover(nil, { border = "none" }) - end, - desc = "Evalutate Expression", - mode = { "n", "v" }, - }, - { - "dp", - function() - require("dap").pause() - end, - desc = "Pause", - }, - { "dr", "Telescope dap configurations", desc = "Run" }, - { - "dsb", - function() - require("dap").step_back() - end, - desc = "Step Back", - }, - { - "dsc", - function() - require("dap").run_to_cursor() - end, - desc = "Run to Cursor", - }, - { - "dsi", - function() - require("dap").step_into() - end, - desc = "Step Into", - }, - { - "dso", - function() - require("dap").step_over() - end, - desc = "Step Over", - }, - { - "dsx", - function() - require("dap").step_out() - end, - desc = "Step Out", - }, - { - "dx", - function() - require("dap").terminate() - end, - desc = "Terminate", - }, - { - "dvf", - function() - require("dap.ui.widgets").centered_float(require("dap.ui.widgets").frames, { border = "none" }) - end, - desc = "Show Frames", - }, - { - "dvr", - function() - require("dap").repl.open(nil, "20split") - end, - desc = "Show Repl", - }, - { - "dvs", - function() - require("dap.ui.widgets").centered_float(require("dap.ui.widgets").scopes, { border = "none" }) - end, - desc = "Show Scopes", - }, - { - "dvt", - function() - require("dap.ui.widgets").centered_float(require("dap.ui.widgets").threads, { border = "none" }) - end, - desc = "Show Threads", - }, - }, - }, -} diff --git a/private_dot_config/nvim/lua/plugins/lsp-lines.lua b/private_dot_config/nvim/lua/plugins/lsp-lines.lua deleted file mode 100644 index 7c87861..0000000 --- a/private_dot_config/nvim/lua/plugins/lsp-lines.lua +++ /dev/null @@ -1,7 +0,0 @@ -vim.diagnostic.config({ virtual_text = false }) --better inline lsp diagnostics -return { - "https://git.sr.ht/~whynothugo/lsp_lines.nvim", - config = function() - require("lsp_lines").setup() - end, -}