Some more settings

master
Jef Roosens 2021-06-04 16:26:21 +02:00
parent a7aa73724f
commit ebdac1081f
Signed by: Jef Roosens
GPG Key ID: 955C0660072F691F
3 changed files with 29 additions and 1 deletions

View File

@ -1,6 +1,6 @@
# =====GENERAL=====
# Main modifier; Mod1 is alt
set $mod Mod1
set $mod Mod4
# Modifier for floating-related operations
floating_modifier $mod

View File

@ -65,4 +65,6 @@ Plug 'udalov/kotlin-vim'
Plug 'editorconfig/editorconfig-vim'
Plug 'maxmellon/vim-jsx-pretty'
call plug#end()

View File

@ -1 +1,27 @@
<<<<<<< Updated upstream
set -s escape-time 0
=======
# Change prefix to Ctrl-a
unbind C-b
set -g prefix C-a
# Prevent weird delay in Vim
set -s escape-time 0
# Make tabs count from 1
set -g base-index 1
# Key binding to reload config file
bind r source-file ~/.tmux.conf \; display "Reloaded config."
# Customize bar
set -g status-style fg=default,bg=default
set -g status-left ''
set -g status-right ''
set -g status-justify centre
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
>>>>>>> Stashed changes