diff --git a/.SpaceVim.d/init.toml b/.SpaceVim.d/init.toml index 450b472..8fd36ed 100644 --- a/.SpaceVim.d/init.toml +++ b/.SpaceVim.d/init.toml @@ -38,7 +38,7 @@ [[layers]] name = "ui" - enable_scrollbar = true + #enable_scrollbar = true [[layers]] #name = "denite" diff --git a/.config/emborg/home##os.Linux,h.midgaard b/.config/emborg/home##os.Linux,h.midgaard index 39460ae..c389ee7 100644 --- a/.config/emborg/home##os.Linux,h.midgaard +++ b/.config/emborg/home##os.Linux,h.midgaard @@ -24,6 +24,7 @@ excludes = ''' ~/.config/Hamsket ~/.config/BraveSoftware ~/.config/RamboxPro + ~/.config/ramboxpro ~/.config/Station ~/.config/unity3d ~/.paradoxlauncher diff --git a/.gitconfig##d.openSUSE b/.gitconfig##d.openSUSE index 1c8feb9..03eed7d 100644 --- a/.gitconfig##d.openSUSE +++ b/.gitconfig##d.openSUSE @@ -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 diff --git a/.local/dotfiles/aliases/neovim.zsh b/.local/dotfiles/aliases/neovim.zsh index 86e60fe..c02fcd3 100644 --- a/.local/dotfiles/aliases/neovim.zsh +++ b/.local/dotfiles/aliases/neovim.zsh @@ -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 diff --git a/.local/dotfiles/environment/tmux-bindkey.zsh b/.local/dotfiles/environment/tmux-bindkey.zsh index 7d334bd..f09454c 100644 --- a/.local/dotfiles/environment/tmux-bindkey.zsh +++ b/.local/dotfiles/environment/tmux-bindkey.zsh @@ -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 diff --git a/.tmux/tmux.conf b/.tmux/tmux.conf index 4da1f3a..63e28f0 100644 --- a/.tmux/tmux.conf +++ b/.tmux/tmux.conf @@ -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 '%%'"