From 69b3e94577c44cf5866a390379923fa892d25369 Mon Sep 17 00:00:00 2001 From: Andrew Conlin Date: Mon, 5 Aug 2024 10:45:44 +0100 Subject: [PATCH] [2024-08-05] Update alacritty window size and H and L vim mapping --- alacritty/alacritty.toml | 4 +++- vim/.vimrc | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/alacritty/alacritty.toml b/alacritty/alacritty.toml index 51c1a5b..c95e858 100644 --- a/alacritty/alacritty.toml +++ b/alacritty/alacritty.toml @@ -8,7 +8,7 @@ shape = "Beam" shape = "Block" [font] -size = 9.0 +size = 11.0 [font.normal] family = "Geist Mono Nerd Font" @@ -16,3 +16,5 @@ style = "Regular" [window] opacity = 0.8 +dimensions = { columns = 75, lines = 25 } +resize_increments = true diff --git a/vim/.vimrc b/vim/.vimrc index 625fd50..55c3cc4 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -19,8 +19,8 @@ autocmd FileType markdown nmap j gj autocmd FileType markdown nmap k gk " use H and L for beginning/end of line -nmap H ^ -nmap L $ +map H ^ +map L $ " wrap text and split on words set wrap