diff options
| author | ache <ache@ache.one> | 2024-10-21 02:12:19 +0200 |
|---|---|---|
| committer | ache <ache@ache.one> | 2024-10-21 02:12:19 +0200 |
| commit | 18327754523d487139e02e811ef4fd8aa702d7df (patch) | |
| tree | 9adad16b29fe3fae1f3a18d45ef076414ac13220 /lua/monekai | |
| parent | Rename with b46 prefix (diff) | |
Test update monekai
Diffstat (limited to 'lua/monekai')
| -rw-r--r-- | lua/monekai/init.lua | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/lua/monekai/init.lua b/lua/monekai/init.lua index e2c5368..f52bea0 100644 --- a/lua/monekai/init.lua +++ b/lua/monekai/init.lua @@ -1,18 +1,19 @@ local M = {} -local theme = require('monekai.theme') +local theme = require("monekai.theme") M.setup = function() - vim.cmd('hi clear') + vim.cmd("hi clear") - vim.o.background = 'dark' - if vim.fn.exists('syntax_on') then - vim.cmd('syntax reset') - end + vim.o.background = "dark" + if vim.fn.exists("syntax_on") then + vim.cmd("syntax reset") + end - vim.o.termguicolors = true - vim.g.colors_name = 'monekai' + vim.o.termguicolors = true + vim.g.colors_name = "b46-monekai" - theme.set_highlights() + theme.set_highlights() end -return M
\ No newline at end of file +return M + |