chore(nvim): Fully migrated to lua!
Closes GH-5
This commit is contained in:
parent
42ee746b9e
commit
577be59f57
3 changed files with 21 additions and 10 deletions
|
@ -6,8 +6,17 @@ return {
|
|||
lazy = false,
|
||||
priority = 1000,
|
||||
config = function ()
|
||||
-- load the colorscheme here
|
||||
vim.cmd([[colorscheme tokyonight]])
|
||||
require("tokyonight").setup({
|
||||
style = "moon",
|
||||
transparent = true,
|
||||
styles = {
|
||||
sidebars = "transparent"
|
||||
},
|
||||
on_highlights = function (hl, c)
|
||||
hl.CursorLineNr = { fg = c.yellow, bold = true }
|
||||
end,
|
||||
})
|
||||
vim.cmd([[colorscheme tokyonight-moon]])
|
||||
end,
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue