mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-30 14:46:44 +00:00
14 lines
276 B
Lua
14 lines
276 B
Lua
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
|
|
|