19 lines
808 B
Lua
Executable File
19 lines
808 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.onedark_style = "deep" -- styles: dark, darker, cool, deep, warm and warmer.
|
|
vim.g.enfocado_style = "nature" -- styles: nature and neon.
|
|
vim.g.neon_style = "dark"
|
|
vim.g.material_style = "deep ocean"
|
|
vim.cmd("colorscheme tokyonight")
|