Do some
This commit is contained in:
parent
f9fbdc4be9
commit
b8de2e70f8
51 changed files with 33 additions and 26 deletions
|
@ -11,13 +11,14 @@
|
|||
"coq_nvim": { "branch": "coq", "commit": "427a3ff9d467e564bfda98c5b56575450dfe3da8" },
|
||||
"friendly-snippets": { "branch": "main", "commit": "00ebcaa159e817150bd83bfe2d51fa3b3377d5c4" },
|
||||
"gitsigns.nvim": { "branch": "main", "commit": "562dc47189ad3c8696dbf460d38603a74d544849" },
|
||||
"go.nvim": { "branch": "master", "commit": "fb612d13c34d3d1d2caa4d5785733abe70dc22f0" },
|
||||
"guihua.lua": { "branch": "master", "commit": "225db770e36aae6a1e9e3a65578095c8eb4038d3" },
|
||||
"indentLine": { "branch": "master", "commit": "b96a75985736da969ac38b72a7716a8c57bdde98" },
|
||||
"lazy.nvim": { "branch": "main", "commit": "077102c5bfc578693f12377846d427f49bc50076" },
|
||||
"lazygit": { "branch": "master", "commit": "8bcfa3660ae17bca0ce7f8c727b1a770fbf88f08" },
|
||||
"lualine.nvim": { "branch": "master", "commit": "b431d228b7bbcdaea818bdc3e25b8cdbe861f056" },
|
||||
"mason-lspconfig.nvim": { "branch": "main", "commit": "1c55991321d1a861537e32446affc5de5d9a6eaf" },
|
||||
"mason.nvim": { "branch": "main", "commit": "e2f7f9044ec30067bc11800a9e266664b88cda22" },
|
||||
"minimap.vim": { "branch": "master", "commit": "395378137e6180762d5b963ca9ad5ac2db5d3283" },
|
||||
"multicursors.nvim": { "branch": "main", "commit": "562809aaf203b4c65482a75199166d360f2b9298" },
|
||||
"neo-tree.nvim": { "branch": "v3.x", "commit": "29f7c215332ba95e470811c380ddbce2cebe2af4" },
|
||||
"noice.nvim": { "branch": "main", "commit": "448bb9c524a7601035449210838e374a30153172" },
|
||||
|
|
14
vim/.config/nvim/lua/plugins/golang.lua
Normal file
14
vim/.config/nvim/lua/plugins/golang.lua
Normal file
|
@ -0,0 +1,14 @@
|
|||
return {
|
||||
"ray-x/go.nvim",
|
||||
dependencies = { -- optional packages
|
||||
"ray-x/guihua.lua",
|
||||
"neovim/nvim-lspconfig",
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
},
|
||||
config = function()
|
||||
require("go").setup()
|
||||
end,
|
||||
event = {"CmdlineEnter"},
|
||||
ft = {"go", 'gomod'},
|
||||
build = ':lua require("go.install").update_all_sync()' -- if you need to install/update all binaries
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
return {
|
||||
"wfxr/minimap.vim",
|
||||
requires = {
|
||||
"wfxr/code-minimap", -- Dependency for the minimap
|
||||
},
|
||||
run = "cargo install --locked code-minimap", -- Install the code-minimap dependency
|
||||
config = function()
|
||||
vim.cmd("let g:minimap_width = 40") -- Example of setting up the minimap width
|
||||
vim.cmd("let g:minimap_auto_start = 1") -- Automatically start the minimap
|
||||
vim.cmd("let g:minimap_auto_start_win_enter = 1") -- Automatically start minimap on window enter
|
||||
end,
|
||||
}
|
||||
|
|
@ -8,8 +8,8 @@ return {
|
|||
null_ls.builtins.formatting.prettier,
|
||||
--null_ls.builtins.diagnostics.asp_grep,
|
||||
null_ls.builtins.formatting.prettierd,
|
||||
null_ls.builtins.diagnostics.cpplint,
|
||||
null_ls.builtins.formatting.clang_format,
|
||||
--null_ls.builtins.diagnostics.cpplint,
|
||||
--null_ls.builtins.formatting.clang_format,
|
||||
},
|
||||
})
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue