first commit
This commit is contained in:
9
lua/colorscheme.lua
Normal file
9
lua/colorscheme.lua
Normal file
@@ -0,0 +1,9 @@
|
||||
-- define your colorscheme here
|
||||
local colorscheme = 'monokai_pro'
|
||||
|
||||
local is_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
|
||||
if not is_ok then
|
||||
vim.notify('colorscheme ' .. colorscheme .. ' not found!')
|
||||
return
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user