all repos — dotfiles @ 4ef5778216d93754b929aaacb93633abba5e0223

my *nix dotfiles

nvim: pmenu, float win colors and borders
Anirudh Oppiliappan x@icyphox.sh
Tue, 15 Feb 2022 10:25:11 +0530
commit

4ef5778216d93754b929aaacb93633abba5e0223

parent

4963e5c05064f079c1f796b1e0fc7496f465bf03

4 files changed, 7 insertions(+), 21 deletions(-)

jump to
M config/nvim/colors/plain.vimconfig/nvim/colors/plain.vim

@@ -10,8 +10,8 @@ let s:black = { "gui": "#222222", "cterm": "0" }

let s:medium_gray = { "gui": "#767676", "cterm": "8" } let s:white = { "gui": "#F1F1F1", "cterm": "7" } let s:actual_white = { "gui": "#FFFFFF", "cterm": "15" } -let s:light_black = { "gui": "#424242", "cterm": "8" } -let s:lighter_black = { "gui": "#545454", "cterm": "8" } +let s:light_black = { "gui": "#424242", "cterm": "11" } +let s:lighter_black = { "gui": "#545454", "cterm": "12" } let s:subtle_black = { "gui": "#303030", "cterm": "11" } let s:light_gray = { "gui": "#999999", "cterm": "12" } let s:lighter_gray = { "gui": "#CCCCCC", "cterm": "7" }

@@ -93,7 +93,7 @@ call s:h("Noise", {"fg": s:norm_subtle})

call s:h("Cursor", {"bg": s:green, "fg": s:norm}) call s:h("Comment", {"fg": s:comment, "cterm": "italic"}) call s:h("Function", {"fg": s:norm, "cterm": "bold"}) -call s:h("FloatWin", {"fg": s:black, "bg": s:white}) +call s:h("FloatWin", {"fg": s:norm, "bg": s:black}) hi! link Constant firstAccent hi! link Character Constant

@@ -193,7 +193,7 @@ call s:h("StatusLineOk", {"gui": "underline", "bg": s:bg, "fg": s:green})

call s:h("StatusLineError", {"gui": "underline", "bg": s:bg, "fg": s:pink}) call s:h("StatusLineWarning", {"gui": "underline", "bg": s:bg, "fg": s:warning}) -call s:h("Pmenu", {"fg": s:norm, "bg": s:bg_very_subtle}) +call s:h("Pmenu", {"fg": s:norm, "bg": s:bg_subtle}) call s:h("PmenuSel", {"fg": s:green, "bg": s:bg_very_subtle, "gui": "bold"}) call s:h("PmenuSbar", {"fg": s:norm, "bg": s:bg_subtle}) call s:h("PmenuThumb", {"fg": s:norm, "bg": s:bg_subtle})

@@ -282,6 +282,7 @@ hi link TSType Noise

hi link TSTypeBuiltin secondAccent hi link TSVariable Normal hi link TSVariableBuiltin Normal +hi link TSRepeat Statement " nvim-lsp diagnostics hi link LspDiagnosticsDefaultError Error
M config/nvim/lua/fzy/fzy.luaconfig/nvim/lua/fzy/fzy.lua

@@ -21,7 +21,7 @@ {

relative = 'editor', style = 'minimal', noautocmd = true, - border = 'none', + border = 'rounded', width = width, height = height, col = math.min((o.columns - width) / 2),
M config/nvim/lua/settings.luaconfig/nvim/lua/settings.lua

@@ -91,7 +91,7 @@ icons = {

mode = 'none' }, preview = { - border = 'solid', + border = 'rounded', }, }, }
D config/nvim/plugin/help.vim

@@ -1,15 +0,0 @@

-" Only apply to .txt files... -augroup HelpInTabs - autocmd! - autocmd BufEnter *.txt call HelpInNewTab() -augroup END - -" Only apply to help files... -function! HelpInNewTab () - if &buftype == 'help' && g:help_in_tabs - "Convert the help window to a tab... - execute "normal \<C-W>T" - endif -endfunction - -let g:help_in_tabs = 1