Configure alacritty

- add config file ~/.config/alacritty/alacritty.yml
  (not synced by mackup)
- make Gnome's <Super>t shortcut start a new alacritty instance
- fix minor mouse issue interacting with vim
This commit is contained in:
Alexander Hess 2022-08-12 14:34:44 +02:00
commit 137ebf29a9
Signed by: alexander
GPG key ID: 344EA5AB10D868E0
4 changed files with 96 additions and 2 deletions

View file

@ -130,6 +130,11 @@ nmap Q <Nop>
cnoremap w!! w !sudo tee % >/dev/null
" Fix mouse issues with Alacritty terminal
" Source: https://wiki.archlinux.org/title/Alacritty#Mouse_not_working_properly_in_Vim
set ttymouse=sgr
" Enable the mouse for selections, including a toggle for this mode
set mouse=a
let g:mouse_enabled=1