diff options
-rw-r--r-- | .config/alacritty/alacritty.yml | 8 | ||||
-rw-r--r-- | .config/tmux/.tmux.conf | 3 | ||||
-rw-r--r-- | .config/zsh/aliases.zsh | 6 | ||||
-rw-r--r-- | README.md | 5 |
4 files changed, 17 insertions, 5 deletions
diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml index 51816a8..d173c4e 100644 --- a/.config/alacritty/alacritty.yml +++ b/.config/alacritty/alacritty.yml @@ -54,22 +54,22 @@ background_opacity: 0.9 font: # The normal (roman) font face to use. normal: - family: Ubuntu Mono + family: Hack Nerd Font Mono # Style can be specified to pick a specific face. style: Regular # The bold font face bold: - family: Ubuntu Mono + family: Hack Nerd Font Mono # Style can be specified to pick a specific face. # style: Bold # The italic font face italic: - family: Ubuntu Mono + family: Hack Nerd Font Mono # Style can be specified to pick a specific face. # style: Italic - size: 12.0 + size: 14.0 offset: x: 0 diff --git a/.config/tmux/.tmux.conf b/.config/tmux/.tmux.conf index c45dd50..2c25fb0 100644 --- a/.config/tmux/.tmux.conf +++ b/.config/tmux/.tmux.conf @@ -11,8 +11,9 @@ set -g status-keys vi set -g history-limit 10000 setw -g mode-keys vi -setw -g mode-mouse on +setw -g mouse on setw -g monitor-activity on +setw -g alternate-screen on bind-key v split-window -h bind-key s split-window -v diff --git a/.config/zsh/aliases.zsh b/.config/zsh/aliases.zsh index 0a64d69..ae70ced 100644 --- a/.config/zsh/aliases.zsh +++ b/.config/zsh/aliases.zsh @@ -8,3 +8,9 @@ alias v='nvim' alias vi='nvim' alias vim='nvim' alias config='/usr/bin/git --git-dir=$HOME/dotfiles/ --work-tree=$HOME' + +if command -v exa > /dev/null; then + alias ls='exa -l' +else + echo "install exa" +fi @@ -4,6 +4,11 @@ Installation of dependencies described here. Most of the config is stolen from https://github.com/ChristianChiarulli/nvim +## Rust + +* exa https://github.com/ogham/exa + + ## zsh ### purs |