Skip to content

Commit 779b6b7

Browse files
committed
Updated to use instead of the that was defaulted.
1 parent 34e7d29 commit 779b6b7

File tree

1 file changed

+8
-16
lines changed

1 file changed

+8
-16
lines changed

init.lua

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ vim.g.mapleader = ' '
9191
vim.g.maplocalleader = ' '
9292

9393
-- Set to true if you have a Nerd Font installed and selected in the terminal
94-
vim.g.have_nerd_font = false
94+
vim.g.have_nerd_font = true
9595

9696
-- [[ Setting options ]]
9797
-- See `:help vim.opt`
@@ -884,25 +884,17 @@ require('lazy').setup({
884884
end,
885885
},
886886

887-
{ -- You can easily change to a different colorscheme.
888-
-- Change the name of the colorscheme plugin below, and then
889-
-- change the command in the config to whatever the name of that colorscheme is.
890-
--
891-
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
892-
'folke/tokyonight.nvim',
893-
priority = 1000, -- Make sure to load this before all the other start plugins.
887+
-- Set preferred colorscheme
888+
{
889+
'catppuccin/nvim',
890+
priority = 1000,
894891
config = function()
895-
---@diagnostic disable-next-line: missing-fields
896-
require('tokyonight').setup {
892+
require('catppucin').setup {
897893
styles = {
898-
comments = { italic = false }, -- Disable italics in comments
894+
comments = { 'italic' },
899895
},
900896
}
901-
902-
-- Load the colorscheme here.
903-
-- Like many other themes, this one has different styles, and you could load
904-
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
905-
vim.cmd.colorscheme 'tokyonight-night'
897+
vim.cmd.colorscheme 'catppuccin-mocha'
906898
end,
907899
},
908900

0 commit comments

Comments
 (0)