diff options
author | Michaël Ball <michael.ball@krotosaudio.com> | 2024-11-11 11:42:31 +0000 |
---|---|---|
committer | Michaël Ball <michael.ball@krotosaudio.com> | 2024-11-11 11:42:31 +0000 |
commit | 9478fada7352088684dab1af7306598a72cc3678 (patch) | |
tree | 7312f411a6ba8cf879667439a3cd27bbcc2ea2ad /neovim/.config/nvim/lua/config | |
parent | 843ca39d52b44d8eb8ad6a1c64d386f33aafcf82 (diff) |
Switch to catppuccin theme
Diffstat (limited to 'neovim/.config/nvim/lua/config')
-rw-r--r-- | neovim/.config/nvim/lua/config/colourscheme.lua | 2 | ||||
-rw-r--r-- | neovim/.config/nvim/lua/config/lazy.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/neovim/.config/nvim/lua/config/colourscheme.lua b/neovim/.config/nvim/lua/config/colourscheme.lua index edba16f..1e9f33e 100644 --- a/neovim/.config/nvim/lua/config/colourscheme.lua +++ b/neovim/.config/nvim/lua/config/colourscheme.lua @@ -1,4 +1,4 @@ -local colorscheme = "xcode" +local colorscheme = "catppuccin" vim.o.background = "light" local ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme) if not ok then diff --git a/neovim/.config/nvim/lua/config/lazy.lua b/neovim/.config/nvim/lua/config/lazy.lua index b82d897..e5945f6 100644 --- a/neovim/.config/nvim/lua/config/lazy.lua +++ b/neovim/.config/nvim/lua/config/lazy.lua @@ -30,7 +30,7 @@ require("lazy").setup({ }, -- Configure any other settings here. See the documentation for more details. -- colorscheme that will be used when installing plugins. - install = { colorscheme = { "xcode" }, missing = true }, + install = { colorscheme = { "catppuccin" }, missing = true }, -- automatically check for plugin updates checker = { enabled = true, notify = false }, }) |