Skip to content

Commit

Permalink
Update dependency init for LSP and DAP
Browse files Browse the repository at this point in the history
  • Loading branch information
bcampolo committed Jul 5, 2024
1 parent 1493976 commit 2c5a0f6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 0 additions & 2 deletions .config/nvim/lua/core/keymaps.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ vim.g.mapleader = " "
local keymap = vim.keymap

-- General keymaps
keymap.set("i", "jk", "<ESC>") -- exit insert mode with jk
keymap.set("i", "ii", "<ESC>") -- exit insert mode with ii
keymap.set("n", "<leader>wq", ":wq<CR>") -- save and quit
keymap.set("n", "<leader>qq", ":q!<CR>") -- quit without saving
keymap.set("n", "<leader>ww", ":w<CR>") -- save
Expand Down
2 changes: 2 additions & 0 deletions .config/nvim/lua/plugins/nvim-dap-ui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ return {
dependencies = {
-- https://github.com/mfussenegger/nvim-dap
'mfussenegger/nvim-dap',
-- https://github.com/nvim-neotest/nvim-nio
'nvim-neotest/nvim-nio',
-- https://github.com/theHamsta/nvim-dap-virtual-text
'theHamsta/nvim-dap-virtual-text', -- inline variable text while debugging
-- https://github.com/nvim-telescope/telescope-dap.nvim
Expand Down
2 changes: 1 addition & 1 deletion .config/nvim/lua/plugins/nvim-lspconfig.lua
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ return {

-- Additional lua configuration, makes nvim stuff amazing!
-- https://github.com/folke/neodev.nvim
{'folke/neodev.nvim' },
{ 'folke/neodev.nvim', opts = {} },
},
config = function ()
require('mason').setup()
Expand Down

0 comments on commit 2c5a0f6

Please sign in to comment.