dotfiles/home/private_dot_config/astronvim/lua/user/plugins/init.lua

36 lines
702 B
Lua
Raw Normal View History

2023-01-07 10:42:54 -06:00
-- load config from local file...
-- local p = function(name)
-- return string.format("require'config.%s'", name)
-- end
-- d for default :P
local d = function(name)
return string.format("require'%s'.setup({})", name)
end
2022-11-11 21:41:26 -06:00
return {
2023-01-07 10:42:54 -06:00
{ "lambdalisue/suda.vim" }, -- for sudo reading and writing
-- theming
{
"catppuccin/nvim",
as = "catppuccin",
config = d("zk"),
},
-- language specific
2023-01-25 21:31:35 -06:00
{ "LnL7/vim-nix" },
2023-01-07 10:42:54 -06:00
{ "alaviss/nim.nvim" },
2022-11-11 21:41:26 -06:00
{
"quarto-dev/quarto-vim",
requires = {
{ "vim-pandoc/vim-pandoc-syntax" },
},
ft = { "quarto" },
},
2023-02-06 12:01:03 -06:00
{ "kenkundert/vim-nestedtext" },
2023-01-07 10:42:54 -06:00
-- general tools
{
"mickael-menu/zk-nvim",
config = d("zk"),
2022-11-11 21:41:26 -06:00
},
}