From 66d18beec92078dd2ed6104716b4e8eebacb67a3 Mon Sep 17 00:00:00 2001 From: Squibid Date: Sun, 22 Oct 2023 19:41:12 -0400 Subject: remove dap cause idk how to auto configure it --- lua/core/binds.lua | 5 ----- lua/core/plugins.lua | 7 ++----- 2 files changed, 2 insertions(+), 10 deletions(-) (limited to 'lua') diff --git a/lua/core/binds.lua b/lua/core/binds.lua index 02216ae..b1e98be 100644 --- a/lua/core/binds.lua +++ b/lua/core/binds.lua @@ -103,11 +103,6 @@ map('n', 'u', 'UndotreeToggle', { desc = 'Open undo tree.' }) map('n', 'f', 'SFMToggle', { desc = 'Open file tree view.' }) map('n', 'b', 'JABSOpen', { desc = 'Switch between buffers.' }) -if pcall(require, "dapui") then - local dapui = require('dapui') -- dap ui - map('n', 'd', dapui.toggle, { desc = 'Debuging ui.' }) -end - if pcall(require, "smart-splits") then local smartsplits = require('smart-splits') -- resizing buffers (toggleable) map('n', 'r', smartsplits.start_resize_mode) diff --git a/lua/core/plugins.lua b/lua/core/plugins.lua index 9309a10..05a5eee 100644 --- a/lua/core/plugins.lua +++ b/lua/core/plugins.lua @@ -124,14 +124,11 @@ require 'dep' { url = 'https://git.sr.ht/~whynothugo/lsp_lines.nvim', }, - -- dap + lsp + linter + formatter installer --------------------------------- + -- mason -------------------------------------------------------------------- { 'williamboman/mason.nvim', deps = { 'WhoIsSethDaniel/mason-tool-installer.nvim', 'williamboman/mason-lspconfig.nvim', } - }, - { 'mfussenegger/nvim-dap', - deps = 'rcarriga/nvim-dap-ui' - }, + } } -- cgit v1.2.1