mirror of
https://github.com/ivuorinen/astronvim_config.git
synced 2026-02-01 09:41:51 +00:00
Astronvim config from kabinspace/AstroNvim_user
This commit is contained in:
26
plugins/init.lua
Normal file
26
plugins/init.lua
Normal file
@@ -0,0 +1,26 @@
|
||||
return {
|
||||
-- You can disable default plugins as follows:
|
||||
["goolord/alpha-nvim"] = { disable = true },
|
||||
["max397574/better-escape.nvim"] = { disable = true },
|
||||
-- You can also add new plugins here as well:
|
||||
["wakatime/vim-wakatime"] = {
|
||||
opt = true,
|
||||
setup = function() table.insert(astronvim.file_plugins, "vim-wakatime") end,
|
||||
},
|
||||
["folke/zen-mode.nvim"] = {
|
||||
cmd = { "ZenMode" },
|
||||
config = function() require("user.plugins.zen-mode").config() end,
|
||||
},
|
||||
["nvim-treesitter/playground"] = {
|
||||
cmd = "TSHighlightCapturesUnderCursor",
|
||||
},
|
||||
["karb94/neoscroll.nvim"] = {
|
||||
opt = true,
|
||||
setup = function() table.insert(astronvim.file_plugins, "neoscroll.nvim") end,
|
||||
config = function() require("user.plugins.neoscroll").config() end,
|
||||
},
|
||||
["lvimuser/lsp-inlayhints.nvim"] = {
|
||||
module = "lsp-inlayhints",
|
||||
config = function() require "user.plugins.lsp-inlayhints" end,
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user