Alacritty
This commit is contained in:
parent
1404d5aaab
commit
f49c967450
11 changed files with 1552 additions and 9 deletions
|
@ -24,7 +24,7 @@ curl "https://raw.githubusercontent.com/chriskempson/base16-xresources/master/xr
|
|||
|
||||
# Vim
|
||||
mkdir -p $HOME/.cache/vim
|
||||
echo -e "let base16colorspace=256\n\"set termguicolors\ncolorscheme base16-${scheme}" > ~/.cache/vim/colorscheme.vim
|
||||
echo -e "\"let base16colorspace=256\n\"set termguicolors\ncolorscheme base16-${scheme}" > ~/.cache/vim/colorscheme.vim
|
||||
|
||||
# FZF
|
||||
curl "https://raw.githubusercontent.com/nicodebo/base16-fzf/master/bash/base16-${scheme}.config" > ~/.local/bin/colorSchemeApplyFzf
|
||||
|
|
8
config/scripts/wttr
Executable file
8
config/scripts/wttr
Executable file
|
@ -0,0 +1,8 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# change Paris to your default location
|
||||
request="v2.wttr.in/$1"
|
||||
[ "$(tput cols)" -lt 125 ] && request+='?n'
|
||||
curl -H "Accept-Language: ${LANG%_*}" --compressed "$request"
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue