diff options
Diffstat (limited to 'Common')
-rw-r--r-- | Common/alacritty/alacritty.yml | 6 | ||||
-rw-r--r-- | Common/sway/config | 1 | ||||
-rw-r--r-- | Common/zshrc | 6 |
3 files changed, 10 insertions, 3 deletions
diff --git a/Common/alacritty/alacritty.yml b/Common/alacritty/alacritty.yml index 7423485..b89296b 100644 --- a/Common/alacritty/alacritty.yml +++ b/Common/alacritty/alacritty.yml @@ -1,8 +1,8 @@ live_config_reload: true import: - - ~/.config/alacritty/papercolor-light.yaml - #- ~/.config/alacritty/atom_one_light.yaml + #- ~/.config/alacritty/papercolor-light.yaml + - ~/.config/alacritty/atom_one_light.yaml #- ~/.config/alacritty/papertheme.yaml #- ~/.config/alacritty/solarized_light.yaml @@ -13,7 +13,7 @@ font: normal: family: RobotoMono Nerd Font Mono - size: 10 + size: 8 window: padding: diff --git a/Common/sway/config b/Common/sway/config index 3e0fc33..7520ba8 100644 --- a/Common/sway/config +++ b/Common/sway/config @@ -13,6 +13,7 @@ include touchpad # border & title for_window [title="^.*"] border none, title_format "<b> %class >> %title </b>" +for_window [floating] border 1 default_border none # gaps diff --git a/Common/zshrc b/Common/zshrc index dca8124..ee0ff91 100644 --- a/Common/zshrc +++ b/Common/zshrc @@ -7,6 +7,7 @@ fi # If you come from bash you might have to change your $PATH. export PATH=$HOME/bin:/usr/local/bin:$HOME/.local/bin:$PATH +export KEYTIMEOUT=1 # Check if env setup file exists if [ ! -f ~/.zsh_env_setup ]; then @@ -69,6 +70,11 @@ alias ls="tput setaf 3 && echo \"'lsa' for 'ls -la', \n'lsg' for 'ls | grep',\n' alias notes="vim ~/Documents/notes.txt" alias todo="vim ~/Documents/todo.txt" +alias _vi=$(which vi) +alias _vim=$(which vim) +alias vi=nvim +alias vim=nvim + # man pages in colors man() { LESS_TERMCAP_md=$'\e[01;31m' \ |