color and plugins for dap

This commit is contained in:
mightypanders 2023-04-11 13:33:49 +02:00
parent 3179c6444f
commit 79c2761a9b
2 changed files with 8 additions and 1 deletions

View File

@ -5,7 +5,7 @@ vim.cmd[[set termguicolors]]
--vim.cmd[[let ayucolor = "light"]]
--vim.cmd[[colorscheme ayu]]
vim.cmd[[set background=light]]
vim.cmd[[colorscheme gruvbox]]
vim.cmd([[
runtime macros/sandwich/keymap/surround.vim
]])
vim.cmd.colorscheme "gruvbox"

View File

@ -14,6 +14,11 @@ require("packer").startup(function(use)
"nvim-telescope/telescope-dap.nvim",
{ "jbyuki/one-small-step-for-vimkind", module = "osv" },
"mxsdev/nvim-dap-vscode-js",
{
"microsoft/vscode-js-debug",
opt = true,
run = "npm install --legacy-peer-deps && np guld vsDebugServerBundle && mv dist out",
}
}
}
use("jose-elias-alvarez/null-ls.nvim")
@ -117,4 +122,6 @@ require("packer").startup(function(use)
use { 'shuntaka9576/preview-swagger.nvim' }
use 'tpope/vim-surround'
use 'towolf/vim-helm'
use { 'catppuccin/nvim', as = "catppuccin" }
use 'gpanders/editorconfig.nvim'
end)