diff options
Diffstat (limited to '.config')
-rw-r--r-- | .config/nvim/after/plugin/kanagawa.lua | 12 | ||||
-rw-r--r-- | .config/nvim/lua/settings.lua | 17 |
2 files changed, 15 insertions, 14 deletions
diff --git a/.config/nvim/after/plugin/kanagawa.lua b/.config/nvim/after/plugin/kanagawa.lua index 8d9e00d..017052b 100644 --- a/.config/nvim/after/plugin/kanagawa.lua +++ b/.config/nvim/after/plugin/kanagawa.lua @@ -1,12 +1,12 @@ require('kanagawa').setup({ - compile = false, -- enable compiling the colorscheme + compile = true, -- enable compiling the colorscheme undercurl = true, -- enable undercurls commentStyle = { italic = true }, functionStyle = {}, - keywordStyle = { italic = true}, - statementStyle = { bold = true }, + keywordStyle = { italic = false, bold = true }, + statementStyle = { bold = false }, typeStyle = {}, - transparent = false, -- do not set background color + transparent = true, -- do not set background color dimInactive = false, -- dim inactive window `:h hl-NormalNC` terminalColors = true, -- define vim.g.terminal_color_{0,17} colors = { -- add/modify theme and palette colors @@ -16,9 +16,9 @@ require('kanagawa').setup({ overrides = function(colors) -- add/modify highlights return {} end, - theme = "wave", -- Load "wave" theme when 'background' option is not set + theme = "dragon", -- Load "wave" theme when 'background' option is not set background = { -- map the value of 'background' option to a theme - dark = "wave", -- try "dragon" ! + dark = "dragon", -- try "dragon" ! light = "lotus" }, }) diff --git a/.config/nvim/lua/settings.lua b/.config/nvim/lua/settings.lua index 8d6c268..7081b9c 100644 --- a/.config/nvim/lua/settings.lua +++ b/.config/nvim/lua/settings.lua @@ -40,6 +40,7 @@ vim.o.smartcase = true vim.opt.wrap = true vim.opt.termguicolors = true vim.opt.bg = 'dark' +-- -- vim.g.gruvbox_material_background = 'medium' -- vim.g.gruvbox_material_foreground = 'mix' -- vim.g.gruvbox_material_better_performance = 1 @@ -68,14 +69,14 @@ highlight LineNr ctermbg=none guibg=none highlight EndOfBuffer ctermbg=none guibg=none highlight FloatermBorder guibg=none guifg='#ebdbb2' highlight SignColumn ctermbg=none guibg=none -highlight DiagnosticError guifg='#f25942' guibg=none ctermbg=none -highlight DiagnosticVirtualTextError guifg='#f25942' guibg=none ctermbg=none -highlight TroubleError guifg='#f25942' guibg=none ctermbg=none -highlight TroubleSignError guifg='#f25942' guibg=none ctermbg=none -highlight DiagnosticWarn guifg='#e9b143' guibg=none ctermbg=none -highlight DiagnosticVirtualTextWarn guifg='#e9b143' guibg=none ctermbg=none -highlight TroubleWarn guifg='#e9b143' guibg=none ctermbg=none -highlight TroubleSignWarn guifg='#e9b143' guibg=none ctermbg=none +" highlight DiagnosticError guifg='#f25942' guibg=none ctermbg=none +" highlight DiagnosticVirtualTextError guifg='#f25942' guibg=none ctermbg=none +" highlight TroubleError guifg='#f25942' guibg=none ctermbg=none +" highlight TroubleSignError guifg='#f25942' guibg=none ctermbg=none +" highlight DiagnosticWarn guifg='#e9b143' guibg=none ctermbg=none +" highlight DiagnosticVirtualTextWarn guifg='#e9b143' guibg=none ctermbg=none +" highlight TroubleWarn guifg='#e9b143' guibg=none ctermbg=none +" highlight TroubleSignWarn guifg='#e9b143' guibg=none ctermbg=none autocmd FileType * setlocal formatoptions-=c formatoptions-=r formatoptions-=o ]] vim.g.mapleader = '\\' |