Some more settings
parent
a7aa73724f
commit
ebdac1081f
|
@ -1,6 +1,6 @@
|
|||
# =====GENERAL=====
|
||||
# Main modifier; Mod1 is alt
|
||||
set $mod Mod1
|
||||
set $mod Mod4
|
||||
|
||||
# Modifier for floating-related operations
|
||||
floating_modifier $mod
|
||||
|
|
|
@ -65,4 +65,6 @@ Plug 'udalov/kotlin-vim'
|
|||
|
||||
Plug 'editorconfig/editorconfig-vim'
|
||||
|
||||
Plug 'maxmellon/vim-jsx-pretty'
|
||||
|
||||
call plug#end()
|
||||
|
|
26
.tmux.conf
26
.tmux.conf
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue