diff --git a/.config/nvim/lua/plugins/look-and-feel.lua b/.config/nvim/lua/plugins/look-and-feel.lua index 9e944b4f..f111887a 100644 --- a/.config/nvim/lua/plugins/look-and-feel.lua +++ b/.config/nvim/lua/plugins/look-and-feel.lua @@ -28,6 +28,7 @@ local M = { let g:sonokai_transparent_background = 1 colorscheme sonokai ]] + vim.api.nvim_set_hl(0, 'WinSeparator', { fg = '#797D7D', bg = '#323232' }) require('user.menu').add_actions('Colorscheme', { ['Toggle Sonokai Style'] = function() local styles = { 'default', 'atlantis', 'andromeda', 'shusia', 'maia', 'espresso' } diff --git a/.config/nvim/lua/user/options.lua b/.config/nvim/lua/user/options.lua index 5d5831f0..c7f743e7 100644 --- a/.config/nvim/lua/user/options.lua +++ b/.config/nvim/lua/user/options.lua @@ -145,8 +145,6 @@ vim.o.expandtab = true -- Tab changes to spaces. Format with :retab vim.opt.indentkeys:remove '0#' vim.opt.indentkeys:remove '<:>' -vim.api.nvim_set_hl(0, 'WinSeparator', { fg = '#797D7D', bg = '#323232' }) - local kube_config_pattern = [[.*\.kube/config]] vim.filetype.add { extension = { tfvars = 'terraform' },