diff --git a/init.lua b/init.lua index f3b8efbf..5c2351a3 100644 --- a/init.lua +++ b/init.lua @@ -156,7 +156,7 @@ vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '␣' } vim.o.inccommand = 'split' -- Show which line your cursor is on -vim.o.cursorline = false +vim.o.cursorline = true -- Minimal number of screen lines to keep above and below the cursor. vim.o.scrolloff = 10 @@ -875,6 +875,7 @@ require('lazy').setup({ signature = { enabled = true }, }, }, + --[[ { -- You can easily change to a different colorscheme. -- Change the name of the colorscheme plugin below, and then @@ -887,16 +888,28 @@ require('lazy').setup({ ---@diagnostic disable-next-line: missing-fields require('tokyonight').setup { styles = { - comments = { italic = false }, -- Disable italics in comments + comments = { italic = false }, -- disable italics in comments }, } - -- Load the colorscheme here. - -- Like many other themes, this one has different styles, and you could load + -- load the colorscheme here. + -- like many other themes, this one has different styles, and you could load -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. vim.cmd.colorscheme 'tokyonight-night' end, }, + --]] + { + 'catppuccin/nvim', + name = 'catppuccin', + priority = 1000, + config = function() + -- load the colorscheme here. + -- like many other themes, this one has different styles, and you could load + -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. + vim.cmd.colorscheme 'catppuccin-mocha' + end, + }, -- Highlight todo, notes, etc in comments { 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } },