mirror of
https://github.com/ivuorinen/astronvim_config.git
synced 2026-01-26 03:14:06 +00:00
23 lines
712 B
Lua
23 lines
712 B
Lua
return {
|
|
["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,
|
|
},
|
|
}
|