alias spellen="aspell -l en check"
alias spellit="aspell -l it check"
+# Battery (Linux)
+alias battery_pc="~/.config/bash/utils/battery_pc.sh"
+alias battery_uc="~/.config/bash/utils/battery_uc.sh"
+
# Thanks to DistroTube <https://gitlab.com/dwt1/dotfiles/>
# Changing "ls" to "exa"; Edited
-alias ls='exa -l --color=always --group-directories-first' # my preferred listing
-alias la='exa -al --color=always --group-directories-first' # all files and dirs
-alias ll='exa --color=always --group-directories-first' # long format
-alias lt='exa -aT --color=always --group-directories-first' # tree listing
-alias l.='exa -a | egrep "^\."'
+# alias ls='exa -l --color=always --group-directories-first' # my preferred listing
+# alias la='exa -al --color=always --group-directories-first' # all files and dirs
+# alias ll='exa --color=always --group-directories-first' # long format
+# alias lt='exa -aT --color=always --group-directories-first' # tree listing
+# alias l.='exa -a | egrep "^\."'
--- /dev/null
+# Panes motion and split
+unbind '"'
+unbind %
+bind v split-window -h
+bind h split-window -v
+bind -n M-Left select-pane -L
+bind -n M-Right select-pane -R
+bind -n M-Up select-pane -U
+bind -n M-Down select-pane -D
+
+# Window motion
+unbind 'w'
+unbind 'l'
+bind w new-window -c "#{pane_current_path}"
+bind l last-window
+
+# Mouse always on
+set -g mouse on
+
+# Status bar
+set -g status-bg white
+set -g status-fg black
+set-option -g status-right "%a %d-%b-%y %I:%M %p"