This commit is contained in:
2025-06-05 18:02:17 -05:00
parent d32a0fff18
commit 809ba5fc75
2 changed files with 20 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ local opt = vim.opt -- for conciseness
opt.clipboard = ''
-- line numbers
opt.relativenumber = true -- show relative line numbers
opt.relativenumber = false -- show relative line numbers
opt.number = true -- shows absolute line number on cursor line (when relative number is on)
-- tabs & indentation

View File

@@ -1,4 +1,23 @@
return {
-- {
-- "navarasu/onedark.nvim",
-- priority = 1000, -- make sure to load this before all the other start plugins
-- config = function()
-- require('onedark').setup {
-- style = 'deep',
-- -- Custom Highlights --
-- colors = {
-- line_bg = "#495060", -- define a new color
-- line_fg = "#838DA0", -- define a new color
-- }, -- Override default colors
-- highlights = {
-- ["LineNr"] = {fg = '$line_fg', bg = '$line_bg', fmt = 'none'},
-- }, -- Override highlight groups
-- }
-- -- Enable theme
-- require('onedark').load()
-- end
-- }
{
"folke/tokyonight.nvim",
priority = 1000, -- make sure to load this before all the other start plugins