Skip to content

Commit

Permalink
Switch to kitty
Browse files Browse the repository at this point in the history
  • Loading branch information
utensil committed Oct 20, 2024
1 parent 0313bd5 commit cc5eb25
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
18 changes: 16 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ install-shellcheck:
run-shellcheck:
shellcheck *.sh

prep-term:
prep-term: prep-kitty

prep-alacritty:
#!/usr/bin/env bash
# Install FiraCode Nerd Font from https://github.com/ryanoasis/nerd-fonts/releases/download/v3.2.1/FiraCode.zip
# After installation, run: fc-cache -f -v
Expand All @@ -79,6 +81,14 @@ prep-term:
# https://alacritty.org/config-alacritty.html
cp .alacritty.toml ~/.alacritty.toml
prep-kitty:
#!/usr/bin/env bash
which kitty || brew install --cask kitty
# configure kitty
# https://sw.kovidgoyal.net/kitty/conf.html
mkdir -p ~/.config/kitty
cp -f kitty.conf ~/.config/kitty/kitty.conf
sync-nvim:
#!/usr/bin/env bash
mkdir -p ~/.config/nvim
Expand All @@ -87,7 +97,7 @@ sync-nvim:
cp -f init.lua ~/.config/lvim/init.lua
cp -f config.lua ~/.config/lvim/config.lua
nvim: prep-term
prep-nvim: prep-term
#!/usr/bin/env bash
which nvim || brew install neovim
# rm -rf ~/.config/nvim ~/.cache/lvim ~/.bun/install ~/.local/share/lunarvim ~/.config/lvim/
Expand All @@ -103,5 +113,9 @@ nvim: prep-term
echo
echo "Use lvim to start LunarVim"
nvim PROJ: sync-nvim
#!/usr/bin/env bash
cd ~/projects/{{PROJ}} && lvim .
# act:
# ./act.sh
6 changes: 6 additions & 0 deletions kitty.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
font_family FiraCode Nerd Font Mono
bold_font auto
italic_font auto
bold_italic_font auto

font_size 18.0

0 comments on commit cc5eb25

Please sign in to comment.