Update Waybar and Neovim

Waybar: Increase height and font size.
Neovim: Fix LSP and buffer numbering.
This commit is contained in:
the_4n0nym0u53 2021-11-26 17:47:33 +01:00
parent a4a485209b
commit db2a8d979c
No known key found for this signature in database
GPG Key ID: 35EE09F5481049BB
3 changed files with 4 additions and 7 deletions

View File

@ -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

View File

@ -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"],

View File

@ -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;
}