This commit is contained in:
Michael Zhang 2020-07-13 15:45:29 -05:00
parent c43147e79b
commit f650b31bb4
Signed by: michael
GPG key ID: BDA47A31A3C8EE6B
4 changed files with 10 additions and 7 deletions

View file

@ -75,10 +75,10 @@ bindsym $mod+space exec $HOME/.local/scripts/rofiwrap.sh
# bindsym $mod+d exec --no-startup-id i3-dmenu-desktop # bindsym $mod+d exec --no-startup-id i3-dmenu-desktop
# change focus # change focus
# bindsym $mod+j focus left bindsym $mod+h focus left
# bindsym $mod+k focus down bindsym $mod+j focus down
# bindsym $mod+l focus up bindsym $mod+k focus up
# bindsym $mod+semicolon focus right bindsym $mod+l focus right
# alternatively, you can use the cursor keys: # alternatively, you can use the cursor keys:
bindsym $mod+Left focus left bindsym $mod+Left focus left
@ -99,10 +99,10 @@ bindsym $mod+Shift+Up move up
bindsym $mod+Shift+Right move right bindsym $mod+Shift+Right move right
# split in horizontal orientation # split in horizontal orientation
bindsym $mod+h split h # bindsym $mod+h split h
# split in vertical orientation # split in vertical orientation
bindsym $mod+v split v # bindsym $mod+v split v
# enter fullscreen mode for the focused container # enter fullscreen mode for the focused container
bindsym $mod+f fullscreen toggle bindsym $mod+f fullscreen toggle

View file

@ -65,6 +65,7 @@ set tabstop=4
set shiftwidth=4 set shiftwidth=4
set expandtab set expandtab
set formatoptions+=t set formatoptions+=t
set colorcolumn=80
syntax on syntax on
filetype on filetype on

View file

@ -1,4 +1,5 @@
alias subl="nvim" alias subl="nvim"
alias ls="exa"
alias rm="garbage put" alias rm="garbage put"
alias cm="chezmoi" alias cm="chezmoi"
alias kill-gpg-agent="gpgconf --kill gpg-agent" alias kill-gpg-agent="gpgconf --kill gpg-agent"

View file

@ -2,7 +2,7 @@ source $HOME/.local/scripts/zsh/zsh-prelude.zsh
source $HOME/.local/scripts/zsh/check-update.zsh source $HOME/.local/scripts/zsh/check-update.zsh
export LANG=en_US.UTF-8 export LANG=en_US.UTF-8
export ZSH="/home/michael/.oh-my-zsh" export ZSH="$HOME/.oh-my-zsh"
ZSH_THEME="ys" ZSH_THEME="ys"
plugins=(git) plugins=(git)
@ -41,5 +41,6 @@ if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then
fi fi
source $HOME/.local/scripts/zsh/aliases.zsh source $HOME/.local/scripts/zsh/aliases.zsh
source $HOME/.zsh/extras/*.zsh
# vim: set filetype=zsh: # vim: set filetype=zsh: