diff --git a/lua/shelbybark/core/options.lua b/lua/shelbybark/core/options.lua index 10d48b2..a9d051e 100644 --- a/lua/shelbybark/core/options.lua +++ b/lua/shelbybark/core/options.lua @@ -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 diff --git a/lua/shelbybark/plugins/colorscheme.lua b/lua/shelbybark/plugins/colorscheme.lua index 2f2a414..d541c16 100644 --- a/lua/shelbybark/plugins/colorscheme.lua +++ b/lua/shelbybark/plugins/colorscheme.lua @@ -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