Updated Spacevim, tmux, gitconfig, emborg, and dotfiles
This commit is contained in:
parent
79322daeb4
commit
09a4c10436
6 changed files with 35 additions and 23 deletions
|
@ -38,7 +38,7 @@
|
|||
|
||||
[[layers]]
|
||||
name = "ui"
|
||||
enable_scrollbar = true
|
||||
#enable_scrollbar = true
|
||||
|
||||
[[layers]]
|
||||
#name = "denite"
|
||||
|
|
|
@ -24,6 +24,7 @@ excludes = '''
|
|||
~/.config/Hamsket
|
||||
~/.config/BraveSoftware
|
||||
~/.config/RamboxPro
|
||||
~/.config/ramboxpro
|
||||
~/.config/Station
|
||||
~/.config/unity3d
|
||||
~/.paradoxlauncher
|
||||
|
|
|
@ -14,24 +14,24 @@
|
|||
required = true
|
||||
[commit]
|
||||
gpgsign = true
|
||||
[alias]
|
||||
up = !git pull --prune $@ && git submodule update --init --recursive
|
||||
[color]
|
||||
ui = auto
|
||||
[color "branch"]
|
||||
remote = blue
|
||||
local = cyan
|
||||
[core]
|
||||
editor = vim
|
||||
[pull]
|
||||
rebase = true
|
||||
[push]
|
||||
default = simple
|
||||
[submodule]
|
||||
recurse = true
|
||||
[credential]
|
||||
helper = /usr/libexec/git/git-credential-libsecret
|
||||
#helper = /usr/lib/git/git-core/git-credential-store
|
||||
#helper = /usr/share/doc/git/contrib/credential/libsecret/git-credential-libsecret
|
||||
#helper = libsecret
|
||||
[alias]
|
||||
up = !git pull --prune $@ && git submodule update --init --recursive
|
||||
#[color]
|
||||
# ui = auto
|
||||
#[color "branch"]
|
||||
# remote = blue
|
||||
# local = cyan
|
||||
#[core]
|
||||
# editor = vim
|
||||
#[pull]
|
||||
# rebase = true
|
||||
#[push]
|
||||
# default = simple
|
||||
#[submodule]
|
||||
# recurse = true
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
if whence -p nvim > /dev/null; then
|
||||
alias vim=nvim
|
||||
fi
|
||||
#if whence -p nvim > /dev/null; then
|
||||
# alias vim=nvim
|
||||
#fi
|
||||
|
||||
|
|
|
@ -1,4 +1,10 @@
|
|||
bindkey -s "\e[24;3~" ""
|
||||
bindkey -s "\e[1;2A" ""
|
||||
bindkey -s "\e[1;2B" ""
|
||||
#bindkey -s "\e[24;3~" ""
|
||||
#bindkey -s "\e[1;2A" ""
|
||||
#bindkey -s "\e[1;2B" ""
|
||||
|
||||
# for non RH/Debian xterm, can't hurt for RH/DEbian xterm
|
||||
bindkey "eOH" beginning-of-line
|
||||
bindkey "eOF" end-of-line
|
||||
# for freebsd console
|
||||
bindkey "e[H" beginning-of-line
|
||||
bindkey "e[F" end-of-line
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
# === General Settings ===
|
||||
# ==========================
|
||||
|
||||
set-option -sa terminal-overrides ",$TERM:RGB"
|
||||
set-option -ga terminal-overrides ",$TERM:Tc"
|
||||
set -g default-terminal "screen-256color"
|
||||
set -g history-limit 5000
|
||||
set -g buffer-limit 20
|
||||
|
@ -29,6 +31,9 @@ set -g mouse on
|
|||
set -g prefix C-a
|
||||
bind r source-file ~/.tmux.conf \; display '~/.tmux.conf sourced'
|
||||
|
||||
#bind-key -n Home send Escape "OH"
|
||||
#bind-key -n End send Escape "OF"
|
||||
|
||||
# ==========================
|
||||
# === Key Bindings ===
|
||||
# ==========================
|
||||
|
@ -46,7 +51,7 @@ bind -n M-Right next-window
|
|||
bind -n M-Left previous-window
|
||||
|
||||
# Synchronization
|
||||
bind-key -n F2 set-window-option synchronize-panes
|
||||
#bind-key -n F2 set-window-option synchronize-panes
|
||||
|
||||
# Window/Session
|
||||
bind-key n command-prompt -p "rename-window:" -I "#{window_name}" "rename-window '%%'"
|
||||
|
|
Loading…
Reference in a new issue