multiple tweaks, for better or worse
This commit is contained in:
parent
be67e054f7
commit
16a72b9ab6
6 changed files with 6 additions and 9 deletions
1
aliases
1
aliases
|
@ -8,7 +8,6 @@ alias rgrep='command grep --exclude-dir=\.git -R'
|
||||||
alias ggrep='command git grep'
|
alias ggrep='command git grep'
|
||||||
alias tailf='command less -R +F'
|
alias tailf='command less -R +F'
|
||||||
alias vi='command vim'
|
alias vi='command vim'
|
||||||
alias whence='type -P'
|
|
||||||
|
|
||||||
# ls
|
# ls
|
||||||
alias ls='command ls --color=auto --group-directories-first '
|
alias ls='command ls --color=auto --group-directories-first '
|
||||||
|
|
2
screenrc
2
screenrc
|
@ -13,7 +13,7 @@ term screen
|
||||||
altscreen on
|
altscreen on
|
||||||
activity "activity on %n"
|
activity "activity on %n"
|
||||||
caption always '%{=}%{RW} %H %{Yw} %S %{wd} %-w%{wk}%n_%t%{wd}%+w'
|
caption always '%{=}%{RW} %H %{Yw} %S %{wd} %-w%{wk}%n_%t%{wd}%+w'
|
||||||
escape ^@@
|
escape ^gg
|
||||||
bind w windowlist -b
|
bind w windowlist -b
|
||||||
bindkey ^[q prev
|
bindkey ^[q prev
|
||||||
bindkey ^[w next
|
bindkey ^[w next
|
||||||
|
|
|
@ -13,6 +13,7 @@ bind > resize-pane -R 5
|
||||||
bind - resize-pane -D 5
|
bind - resize-pane -D 5
|
||||||
bind + resize-pane -U 5
|
bind + resize-pane -U 5
|
||||||
bind e choose-session
|
bind e choose-session
|
||||||
|
bind t command-prompt -p "send pane to:" "join-pane -t :'%%'"
|
||||||
bind -n M-w next-window
|
bind -n M-w next-window
|
||||||
bind -n M-q previous-window
|
bind -n M-q previous-window
|
||||||
bind -n M-j next-window
|
bind -n M-j next-window
|
||||||
|
@ -21,7 +22,7 @@ bind -n M-` last-window
|
||||||
bind -n S-Pageup copy-mode -u
|
bind -n S-Pageup copy-mode -u
|
||||||
setw -g mode-keys "vi"
|
setw -g mode-keys "vi"
|
||||||
set -g set-titles "on"
|
set -g set-titles "on"
|
||||||
set -g set-titles-string "#h"
|
set -g set-titles-string "[#h:#S] #W"
|
||||||
set -g escape-time "0"
|
set -g escape-time "0"
|
||||||
set -g history-limit "10000"
|
set -g history-limit "10000"
|
||||||
set -g status-left-length "20"
|
set -g status-left-length "20"
|
||||||
|
|
|
@ -18,6 +18,7 @@ Plug 'mhinz/vim-signify'
|
||||||
Plug 'tpope/vim-fugitive'
|
Plug 'tpope/vim-fugitive'
|
||||||
Plug 'tpope/vim-rsi'
|
Plug 'tpope/vim-rsi'
|
||||||
Plug 'tpope/vim-vinegar'
|
Plug 'tpope/vim-vinegar'
|
||||||
|
Plug 'vdrandom/vim-tru-typewriter'
|
||||||
Plug 'vimwiki/vimwiki'
|
Plug 'vimwiki/vimwiki'
|
||||||
Plug 'vim-scripts/directionalWindowResizer'
|
Plug 'vim-scripts/directionalWindowResizer'
|
||||||
|
|
||||||
|
|
6
vimrc
6
vimrc
|
@ -23,11 +23,7 @@ if v:version >= 703
|
||||||
set colorcolumn=80 relativenumber formatoptions+=j
|
set colorcolumn=80 relativenumber formatoptions+=j
|
||||||
endif
|
endif
|
||||||
if v:version >= 800
|
if v:version >= 800
|
||||||
set breakindent keymap=russian-jcukenwintype iminsert=0 imsearch=0
|
set breakindent
|
||||||
inoremap <C-@> <C-^>
|
|
||||||
cnoremap <C-@> <C-^>
|
|
||||||
inoremap <C-Space> <C-^>
|
|
||||||
cnoremap <C-Space> <C-^>
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" maps
|
" maps
|
||||||
|
|
|
@ -64,7 +64,7 @@ URxvt.foreground: base03
|
||||||
URxvt.background: base07
|
URxvt.background: base07
|
||||||
URxvt.colorBD: base00
|
URxvt.colorBD: base00
|
||||||
|
|
||||||
URxvt.cursorColor: base08
|
URxvt.cursorColor: base09
|
||||||
|
|
||||||
URxvt.color0: base01
|
URxvt.color0: base01
|
||||||
URxvt.color1: base08
|
URxvt.color1: base08
|
||||||
|
|
Loading…
Reference in a new issue