1
0
Fork 0

fish, wezterm: some wezterm cosmetics; nvim: enable shellcheck for bash

This commit is contained in:
Von Random 2023-03-29 14:52:41 +03:00
parent d20314a03b
commit 5babd1faee
3 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
function ls function ls
command exa --group-directories-first $argv set -l i
if test -n "$WEZTERM_PANE"
set i '--icons'
end
command exa $i --group-directories-first $argv
end end

View file

@ -16,7 +16,7 @@ local function plugins(use)
} }
use { use {
'w0rp/ale', 'w0rp/ale',
ft = { 'sh', 'zsh', 'lua', 'python' }, ft = { 'bash', 'sh', 'zsh', 'lua', 'python' },
cmd = 'ALEEnable' cmd = 'ALEEnable'
} }
end end

View file

@ -12,7 +12,7 @@ local overrides = {
theme = { color_scheme = 'PencilLight' } theme = { color_scheme = 'PencilLight' }
} }
local tab_bar_bg = '#ebdbae' local tab_bar_bg = '#ebdbae'
local tab_bar_fg = '#1e1e1e' local tab_bar_fg = '#282828'
local tab_bar_defaults = { local tab_bar_defaults = {
bg_color = tab_bar_bg, bg_color = tab_bar_bg,
fg_color = tab_bar_fg, fg_color = tab_bar_fg,