Compare commits
2 Commits
c2b60ad356
...
cdd64b6cbb
Author | SHA1 | Date | |
---|---|---|---|
cdd64b6cbb | |||
74cc01e310 |
8
nvim/lua/custom/plugins/oil.lua
Normal file
8
nvim/lua/custom/plugins/oil.lua
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
-- File explorer that lets you edit your filesystem like a normal Neovim buffer.
|
||||||
|
-- https://github.com/stevearc/oil.nvim
|
||||||
|
return {
|
||||||
|
'stevearc/oil.nvim',
|
||||||
|
event = 'VeryLazy',
|
||||||
|
opts = {},
|
||||||
|
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
||||||
|
}
|
16
nvim/lua/custom/plugins/rayx.lua
Normal file
16
nvim/lua/custom/plugins/rayx.lua
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
-- A feature-rich Go development plugin, leveraging gopls, treesitter AST, Dap, and various Go tools.
|
||||||
|
-- https://github.com/ray-x/go.nvim
|
||||||
|
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
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user