mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-31 18:47:11 +00:00
Feat: Moved astronvim user config from submodule
This commit is contained in:
26
config/astronvim/lua/user/plugins/user.lua
Normal file
26
config/astronvim/lua/user/plugins/user.lua
Normal file
@@ -0,0 +1,26 @@
|
||||
return {
|
||||
-- You can also add new plugins here as well:
|
||||
-- Add plugins, the lazy syntax
|
||||
{
|
||||
"catppuccin/nvim",
|
||||
name = "catppuccin",
|
||||
lazy = false,
|
||||
enabled = true,
|
||||
config = function()
|
||||
require("catppuccin").setup({
|
||||
flavour = "mocha"
|
||||
})
|
||||
end,
|
||||
},
|
||||
"andweeb/presence.nvim",
|
||||
{
|
||||
"ray-x/lsp_signature.nvim",
|
||||
event = "BufRead",
|
||||
config = function() require("lsp_signature").setup() end,
|
||||
},
|
||||
{
|
||||
"wakatime/vim-wakatime",
|
||||
lazy = false,
|
||||
enabled = true,
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user