Updated Spacevim, tmux, gitconfig, emborg, and dotfiles

This commit is contained in:
Eric Renfro 2020-11-28 19:41:03 -05:00
parent 2f8e8e1e1f
commit aba52ac4df
Signed by untrusted user who does not match committer: psi-jack
GPG Key ID: 14977F3A50D9A5BF
6 changed files with 35 additions and 23 deletions

View File

@ -38,7 +38,7 @@
[[layers]] [[layers]]
name = "ui" name = "ui"
enable_scrollbar = true #enable_scrollbar = true
[[layers]] [[layers]]
#name = "denite" #name = "denite"

View File

@ -24,6 +24,7 @@ excludes = '''
~/.config/Hamsket ~/.config/Hamsket
~/.config/BraveSoftware ~/.config/BraveSoftware
~/.config/RamboxPro ~/.config/RamboxPro
~/.config/ramboxpro
~/.config/Station ~/.config/Station
~/.config/unity3d ~/.config/unity3d
~/.paradoxlauncher ~/.paradoxlauncher

View File

@ -14,24 +14,24 @@
required = true required = true
[commit] [commit]
gpgsign = true 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] [credential]
helper = /usr/libexec/git/git-credential-libsecret helper = /usr/libexec/git/git-credential-libsecret
#helper = /usr/lib/git/git-core/git-credential-store #helper = /usr/lib/git/git-core/git-credential-store
#helper = /usr/share/doc/git/contrib/credential/libsecret/git-credential-libsecret #helper = /usr/share/doc/git/contrib/credential/libsecret/git-credential-libsecret
#helper = 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

View File

@ -1,4 +1,4 @@
if whence -p nvim > /dev/null; then #if whence -p nvim > /dev/null; then
alias vim=nvim # alias vim=nvim
fi #fi

View File

@ -1,4 +1,10 @@
bindkey -s "\e[24;3~" "" #bindkey -s "\e[24;3~" ""
bindkey -s "\e[1;2A" "" #bindkey -s "\e[1;2A" ""
bindkey -s "\e[1;2B" "" #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

View File

@ -2,6 +2,8 @@
# === General Settings === # === General Settings ===
# ========================== # ==========================
set-option -sa terminal-overrides ",$TERM:RGB"
set-option -ga terminal-overrides ",$TERM:Tc"
set -g default-terminal "screen-256color" set -g default-terminal "screen-256color"
set -g history-limit 5000 set -g history-limit 5000
set -g buffer-limit 20 set -g buffer-limit 20
@ -29,6 +31,9 @@ set -g mouse on
set -g prefix C-a set -g prefix C-a
bind r source-file ~/.tmux.conf \; display '~/.tmux.conf sourced' 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 === # === Key Bindings ===
# ========================== # ==========================
@ -46,7 +51,7 @@ bind -n M-Right next-window
bind -n M-Left previous-window bind -n M-Left previous-window
# Synchronization # Synchronization
bind-key -n F2 set-window-option synchronize-panes #bind-key -n F2 set-window-option synchronize-panes
# Window/Session # Window/Session
bind-key n command-prompt -p "rename-window:" -I "#{window_name}" "rename-window '%%'" bind-key n command-prompt -p "rename-window:" -I "#{window_name}" "rename-window '%%'"