From b99cabde7a2a6b592081e35cb7aeee0ffabd8da1 Mon Sep 17 00:00:00 2001 From: Trysdyn Black Date: Fri, 12 Aug 2022 15:54:56 -0700 Subject: [PATCH] A couple of uncommitted changes for mpv, vim, and qute - Drop the audio normalization filter for mpv. It was doing more harm than good. - Make the tab bar in qute only display if I have multiple tabs - Kill mouse interference in vim dead --- .config/mpv/mpv.conf | 2 +- .config/qutebrowser/config.py | 3 +++ .vimrc | 4 ++++ 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.config/mpv/mpv.conf b/.config/mpv/mpv.conf index f72a60c..289392b 100644 --- a/.config/mpv/mpv.conf +++ b/.config/mpv/mpv.conf @@ -13,7 +13,7 @@ hwdec=auto # Audio filter to try to normalize audio levels. Especially important for # Twitch where there's no defacto normal level to target -af="dynaudnorm=g=5:f=250:r=0.9:p=0.5" +#af="dynaudnorm=g=5:f=250:r=0.9:p=0.5" # Put screenshots in my bespoke screenshot dir screenshot-directory=~/screenshot diff --git a/.config/qutebrowser/config.py b/.config/qutebrowser/config.py index 41dd0f1..bef3088 100644 --- a/.config/qutebrowser/config.py +++ b/.config/qutebrowser/config.py @@ -305,6 +305,9 @@ c.colors.tabs.selected.even.bg = base02 c.fonts.default_size = "10pt" c.fonts.default_family = "DejaVu Sans Mono" +# Only show tab bar if there's more than one tab +c.tabs.show = "multiple" + # Don't autoplay video, especially since we'll export it to MPV c.content.autoplay = False diff --git a/.vimrc b/.vimrc index 49ced65..7e87523 100644 --- a/.vimrc +++ b/.vimrc @@ -53,6 +53,10 @@ let g:airline_powerline_fonts = 1 " Set UTF-8 default set encoding=utf-8 +" Stop mouse support from interfering with copy/paste +set mouse= +set ttymouse= + " Searching Modifications set hlsearch "highlight search matches set incsearch