Update Waybar and Neovim
Waybar: Increase height and font size. Neovim: Fix LSP and buffer numbering.
This commit is contained in:
parent
a4a485209b
commit
db2a8d979c
|
@ -96,9 +96,6 @@ lua << EOF
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
setl omnifunc=v:lua.vim.lsp.omnifunc
|
|
||||||
|
|
||||||
""" BASIC SETTINGS
|
""" BASIC SETTINGS
|
||||||
|
|
||||||
set number
|
set number
|
||||||
|
@ -129,7 +126,7 @@ endif
|
||||||
|
|
||||||
" Set dark, transparent background, should default to dark, but it's there just in case
|
" Set dark, transparent background, should default to dark, but it's there just in case
|
||||||
hi Normal guibg=NONE ctermbg=NONE
|
hi Normal guibg=NONE ctermbg=NONE
|
||||||
let &background = 'dark'
|
let background = 'dark'
|
||||||
|
|
||||||
" lightline config
|
" lightline config
|
||||||
let g:lightline = {}
|
let g:lightline = {}
|
||||||
|
@ -139,7 +136,7 @@ let g:lightline.component_expand = { 'buffers': 'lightline#bufferline#buffers' }
|
||||||
let g:lightline.component_type = { 'buffers': 'tabsel' }
|
let g:lightline.component_type = { 'buffers': 'tabsel' }
|
||||||
|
|
||||||
" lightline-bufferline config
|
" 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#shorten_path = 0
|
||||||
let g:lightline#bufferline#smart_path = 0
|
let g:lightline#bufferline#smart_path = 0
|
||||||
let g:lightline#bufferline#enable_devicons = 1
|
let g:lightline#bufferline#enable_devicons = 1
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"layer": "top", // Waybar at top layer
|
"layer": "top", // Waybar at top layer
|
||||||
"position": "top", // Waybar position (top|bottom|left|right)
|
"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
|
// "width": 1280, // Waybar width
|
||||||
// Choose the order of the modules
|
// Choose the order of the modules
|
||||||
"modules-left": ["idle_inhibitor", "sway/workspaces", "tray", "custom/media", "sway/mode"],
|
"modules-left": ["idle_inhibitor", "sway/workspaces", "tray", "custom/media", "sway/mode"],
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
/* `otf-font-awesome` is required to be installed for icons */
|
/* `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 */
|
/* 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-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;
|
min-height: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue