Skip to content

Commit

Permalink
install nvim-dap
Browse files Browse the repository at this point in the history
  • Loading branch information
cappyzawa committed Nov 26, 2023
1 parent 47e879f commit 04f4c1e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .config/nvim/lua/config/lazy.lua
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ local icons = {
require("lazy").setup({
spec = {
{ "LazyVim/LazyVim", import = "lazyvim.plugins" },
{ import = "lazyvim.plugins.extras.coding.copilot" },
{ import = "plugins" },
{ import = "lazyvim.plugins.extras.coding.copilot" },
{ import = "lazyvim.plugins.extras.dap.core" },
{ import = "lazyvim.plugins.extras.lang.go" },
},
defaults = {
-- By default, only LazyVim plugins will be lazy-loaded. Your custom plugins will load during startup.
Expand Down
2 changes: 1 addition & 1 deletion .config/nvim/lua/plugins/formatting.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ return {
},
formatters_by_ft = {
css = { "prettier" },
go = { "goimports" },
go = { "goimports", "gofumpt" },
html = { "prettier" },
javascript = { "prettier" },
json = { "prettier" },
Expand Down
1 change: 0 additions & 1 deletion .config/nvim/lua/plugins/lsp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,6 @@ return {
"beautysh",
"cueimports",
"flake8",
"goimports",
"prettier",
"shellcheck",
"shfmt",
Expand Down

0 comments on commit 04f4c1e

Please sign in to comment.