added html plugins and core options file

This commit is contained in:
2023-10-18 10:16:15 +02:00
parent d5ec01da3f
commit 5c63bbe2d6
5 changed files with 37 additions and 5 deletions

View File

@@ -0,0 +1,9 @@
local status, color = pcall(vim.cmd.colorscheme, "catppuccin")
if not status then
print(color, 'using murphy instead')
vim.cmd.colorscheme("murphy")
end
vim.opt.fillchars:append { eob = " "}
vim.cmd.set("noshowmode")
vim.cmd.set("noruler")