diff options
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/config/colorschemes.lua | 82 | ||||
| -rw-r--r-- | lua/config/init.lua | 2 | ||||
| -rw-r--r-- | lua/config/options.lua | 3 | ||||
| -rw-r--r-- | lua/plugins/misc.lua | 8 |
4 files changed, 7 insertions, 88 deletions
diff --git a/lua/config/colorschemes.lua b/lua/config/colorschemes.lua deleted file mode 100644 index f09ecd3..0000000 --- a/lua/config/colorschemes.lua +++ /dev/null @@ -1,82 +0,0 @@ -if nixCats("theme") then - require("vague").setup({ - transparent = true, - bold = false, - }) - - require("gruvbox-material").setup({ - italics = true, - contrast = "medium", - comments = { - italics = true, - }, - background = { - transparent = true, - }, - float = { - force_background = true, - background_color = nil, - }, - }) - - require("kanso").setup({ - compile = true, - transparent = true, - dimInactive = false, - terminalColors = true, - overrides = function(colors) - local theme = colors.theme - return { - Pmenu = { fg = theme.ui.fg, bg = theme.ui.bg_p1 }, - NormalFloat = { bg = theme.ui.bg_p1 }, - FloatTitle = { fg = theme.ui.special, bg = theme.ui.bg_p1 }, - FloatBorder = { fg = theme.ui.shade0, bg = theme.ui.bg_p1 }, - } - end, - background = { - dark = "ink", - light = "pearl", - }, - foreground = "default", - }) - - require("rose-pine").setup({ - styles = { - bold = true, - italic = true, - transparency = true, - }, - }) - - require("kanagawa").setup({ - compile = true, - undercurl = true, - commentStyle = { italic = true }, - functionStyle = {}, - keywordStyle = { italic = true }, - statementStyle = { bold = true }, - typeStyle = {}, - transparent = true, - dimInactive = false, - terminalColors = true, - colors = { - palette = {}, - theme = { - wave = {}, - lotus = {}, - dragon = {}, - all = { ui = { bg_gutter = "none" } }, - }, - }, - overrides = function(colors) - return {} - end, - theme = "dragon", - background = { - dark = "dragon", - light = "lotus", - }, - }) -end - -return {} diff --git a/lua/config/init.lua b/lua/config/init.lua index 2be1996..afc9d18 100644 --- a/lua/config/init.lua +++ b/lua/config/init.lua @@ -1,4 +1,4 @@ require("config.options") -require("config.colorschemes") +-- require("colors.colorschemes") require("config.keys") require("config.lsp") diff --git a/lua/config/options.lua b/lua/config/options.lua index c50b859..980f1c8 100644 --- a/lua/config/options.lua +++ b/lua/config/options.lua @@ -15,7 +15,8 @@ vim.o.showcmd = false vim.o.signcolumn = "yes" vim.o.cursorline = true vim.o.cursorlineopt = "number" -- Restricts the highlight ONLY to the number column -vim.o.background = "dark" +-- vim.o.background = "dark" +vim.o.winborder = "single" vim.o.conceallevel = 2 vim.o.autoread = true diff --git a/lua/plugins/misc.lua b/lua/plugins/misc.lua index f1aa60b..4dc1a7b 100644 --- a/lua/plugins/misc.lua +++ b/lua/plugins/misc.lua @@ -74,10 +74,10 @@ return { chunk = { enable = true, priority = 15, - style = { - vim.api.nvim_get_hl(0, { name = "IndentBlanklineIndent1" }), - vim.api.nvim_get_hl(0, { name = "DiagnosticError" }), - }, + -- style = { + -- vim.api.nvim_get_hl(0, { name = "IndentBlanklineIndent1" }), + -- vim.api.nvim_get_hl(0, { name = "DiagnosticError" }), + -- }, use_treesitter = true, chars = { horizontal_line = "─", |
