mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-02-02 21:48:12 +00:00
Moved custom plugins to their own file
This commit is contained in:
13
config/nvim/lua/custom/plugins.lua
Normal file
13
config/nvim/lua/custom/plugins.lua
Normal file
@@ -0,0 +1,13 @@
|
||||
return function(use)
|
||||
use({
|
||||
"folke/which-key.nvim",
|
||||
config = function()
|
||||
require("which-key").setup({})
|
||||
end
|
||||
})
|
||||
|
||||
-- catppuccin theme
|
||||
use { "catppuccin/nvim", as = "catppuccin" }
|
||||
vim.cmd.colorscheme('catppuccin-latte')
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user