From db2a8d979c662051ca96dbbc0b59075ddbc04036 Mon Sep 17 00:00:00 2001 From: the_4n0nym0u53 Date: Fri, 26 Nov 2021 17:47:33 +0100 Subject: [PATCH] Update Waybar and Neovim Waybar: Increase height and font size. Neovim: Fix LSP and buffer numbering. --- nvim/.config/nvim/init.vim | 7 ++----- waybar/.config/waybar/config | 2 +- waybar/.config/waybar/style.css | 2 +- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/nvim/.config/nvim/init.vim b/nvim/.config/nvim/init.vim index 5a597ba..f2c2cde 100644 --- a/nvim/.config/nvim/init.vim +++ b/nvim/.config/nvim/init.vim @@ -96,9 +96,6 @@ lua << EOF EOF - -setl omnifunc=v:lua.vim.lsp.omnifunc - """ BASIC SETTINGS set number @@ -129,7 +126,7 @@ endif " Set dark, transparent background, should default to dark, but it's there just in case hi Normal guibg=NONE ctermbg=NONE -let &background = 'dark' +let background = 'dark' " lightline config let g:lightline = {} @@ -139,7 +136,7 @@ let g:lightline.component_expand = { 'buffers': 'lightline#bufferline#buffers' } let g:lightline.component_type = { 'buffers': 'tabsel' } " lightline-bufferline config -let g:lightline#bufferline#show_number = 1 +let g:lightline#bufferline#show_number = 2 let g:lightline#bufferline#shorten_path = 0 let g:lightline#bufferline#smart_path = 0 let g:lightline#bufferline#enable_devicons = 1 diff --git a/waybar/.config/waybar/config b/waybar/.config/waybar/config index 873e6d2..188be77 100644 --- a/waybar/.config/waybar/config +++ b/waybar/.config/waybar/config @@ -1,7 +1,7 @@ { "layer": "top", // Waybar at top layer "position": "top", // Waybar position (top|bottom|left|right) - "height": 24, // Waybar height (to be removed for auto height) + "height": 26, // Waybar height (to be removed for auto height) // "width": 1280, // Waybar width // Choose the order of the modules "modules-left": ["idle_inhibitor", "sway/workspaces", "tray", "custom/media", "sway/mode"], diff --git a/waybar/.config/waybar/style.css b/waybar/.config/waybar/style.css index 9babb2f..49e269b 100644 --- a/waybar/.config/waybar/style.css +++ b/waybar/.config/waybar/style.css @@ -4,7 +4,7 @@ /* `otf-font-awesome` is required to be installed for icons */ /* Find Ubuntu Condensed font somewhere and install it in your system, it is NOT installed by default */ font-family: "Ubuntu Condensed", "Font Awesome 5 Free Solid", "Font Awesome 5 Free Regular", "Font Awesome 5 Brands Regular", sans-serif; - font-size: 15px; + font-size: 16px; min-height: 0; }