mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-30 00:46:19 +00:00
27 lines
521 B
Lua
27 lines
521 B
Lua
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,
|
|
},
|
|
}
|