Dot_Files/.config/nvim-old/lua/theme.lua
2022-01-10 09:55:15 -06:00

18 lines
677 B
Lua
Executable File

-- Hide ~ from end of lines.
vim.opt.fillchars = { eob = " " }
-- Add icons for lsp diagnostics sings
vim.cmd
[[
sign define LspDiagnosticsSignError text= texthl=LspDiagnosticsSignError linehl= numhl=
sign define LspDiagnosticsSignWarning text= texthl=LspDiagnosticsSignWarning linehl= numhl=
sign define LspDiagnosticsSignInformation text= texthl=LspDiagnosticsSignInformation linehl= numhl=
sign define LspDiagnosticsSignHint text= texthl=LspDiagnosticsSignHint linehl= numhl=
]]
vim.g.tokyonight_style = "night" -- styles: storm, night and day.
vim.g.tokyonight_transparent = true
vim.g.tokyonight_transparent_sidebar = true
vim.cmd("colorscheme tokyonight")