First working setup in order to superseede Emacs
This commit is contained in:
8
lua/colorscheme.lua
Normal file
8
lua/colorscheme.lua
Normal file
@@ -0,0 +1,8 @@
|
||||
-- define your colorscheme here
|
||||
local colorscheme = 'lunaperche'
|
||||
|
||||
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