First working setup in order to superseede Emacs

This commit is contained in:
2024-09-09 09:50:41 +02:00
commit a91dfef8f1
8 changed files with 368 additions and 0 deletions

8
lua/colorscheme.lua Normal file
View 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