set colorscheme to catppuccin-mocha, cursorline = true

This commit is contained in:
Ryan 2026-02-01 23:28:34 -06:00
parent 95e2e11532
commit fc1e8623ec
1 changed files with 17 additions and 4 deletions

View File

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