remove ide like vim plugins as well as disable ^S/^Q in zshrc and remove aliases I never use anyway
This commit is contained in:
parent
d1456d5be4
commit
f7a608b37b
2 changed files with 4 additions and 28 deletions
|
@ -15,12 +15,6 @@ Plug 'tpope/vim-rsi'
|
||||||
Plug 'vdrandom/vim-tru-typewriter'
|
Plug 'vdrandom/vim-tru-typewriter'
|
||||||
Plug 'vim-scripts/directionalWindowResizer'
|
Plug 'vim-scripts/directionalWindowResizer'
|
||||||
|
|
||||||
" IDE liek, per filetype
|
|
||||||
" if v:version >= 800
|
|
||||||
" Plug 'davidhalter/jedi-vim', { 'for': 'python' }
|
|
||||||
" Plug 'w0rp/ale', { 'for': 'python' }
|
|
||||||
" endif
|
|
||||||
|
|
||||||
" colorschemes
|
" colorschemes
|
||||||
Plug 'lifepillar/vim-solarized8'
|
Plug 'lifepillar/vim-solarized8'
|
||||||
Plug 'lifepillar/vim-gruvbox8'
|
Plug 'lifepillar/vim-gruvbox8'
|
||||||
|
|
26
zshrc
26
zshrc
|
@ -2,6 +2,8 @@
|
||||||
[[ $- != *i* ]] && return
|
[[ $- != *i* ]] && return
|
||||||
|
|
||||||
# {{{ settings
|
# {{{ settings
|
||||||
|
# disable the bloody ^S / ^Q, I use tmux all the time anyway
|
||||||
|
stty -ixon
|
||||||
setopt APPEND_HISTORY EXTENDED_HISTORY HIST_IGNORE_DUPS EXTENDED_GLOB AUTO_CD AUTO_PUSHD PRINT_EXIT_VALUE
|
setopt APPEND_HISTORY EXTENDED_HISTORY HIST_IGNORE_DUPS EXTENDED_GLOB AUTO_CD AUTO_PUSHD PRINT_EXIT_VALUE
|
||||||
unsetopt BEEP NO_MATCH NOTIFY MENU_COMPLETE AUTO_MENU
|
unsetopt BEEP NO_MATCH NOTIFY MENU_COMPLETE AUTO_MENU
|
||||||
|
|
||||||
|
@ -148,6 +150,7 @@ alias pacman='command pacman --color=auto'
|
||||||
alias rgrep='command grep --exclude-dir=\.git -R'
|
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 diff='command diff --color'
|
||||||
alias vi='command vim'
|
alias vi='command vim'
|
||||||
alias ls='command ls --color=auto --group-directories-first '
|
alias ls='command ls --color=auto --group-directories-first '
|
||||||
alias ll='ls -lha'
|
alias ll='ls -lha'
|
||||||
|
@ -161,27 +164,6 @@ alias atmux='command tmux -2 attach'
|
||||||
alias rscreen='command screen -Dr'
|
alias rscreen='command screen -Dr'
|
||||||
alias scr='command screen sudo -Es'
|
alias scr='command screen sudo -Es'
|
||||||
# }}}
|
# }}}
|
||||||
# {{{ awesome zsh only aliases
|
|
||||||
alias -g L='| less -R'
|
|
||||||
alias -g H='| head'
|
|
||||||
alias -g T='| tail'
|
|
||||||
alias -g G='| grep'
|
|
||||||
alias -g PV='| pv |'
|
|
||||||
alias -g WCL='| wc -l'
|
|
||||||
alias -g NCL='| nc -l 17777'
|
|
||||||
alias -g NO='1> /dev/null'
|
|
||||||
alias -g NE='2> /dev/null'
|
|
||||||
alias -g EO='2> &1'
|
|
||||||
alias -g OE='1> &2'
|
|
||||||
alias -g TEE='>&1 >>'
|
|
||||||
alias -g WK='| iconvwk'
|
|
||||||
alias -g UK='| iconvuk'
|
|
||||||
alias -g KU='| iconvku'
|
|
||||||
alias -g WU='| iconvwu'
|
|
||||||
alias -s {txt,xml,cf,cfg,cnf,conf,ini,erb,pp}=$EDITOR
|
|
||||||
alias -s {mkv,mp4,avi,mpg,mp3,ogg,mpeg,mov,webm,flv}='mpv'
|
|
||||||
alias -s {jpg,png,gif,bmp,jpeg}='eog'
|
|
||||||
# }}}
|
|
||||||
# {{{ plugins
|
# {{{ plugins
|
||||||
# colors
|
# colors
|
||||||
font_colors() {
|
font_colors() {
|
||||||
|
@ -202,7 +184,7 @@ font_colors() {
|
||||||
colorize() {
|
colorize() {
|
||||||
local cmds cmd
|
local cmds cmd
|
||||||
cmds=(\
|
cmds=(\
|
||||||
cc configure cvs df diff dig gcc gmake id ip last lsof make mount \
|
cc configure cvs df dig gcc gmake id ip last lsof make mount \
|
||||||
mtr netstat ping ping6 ps tcpdump traceroute traceroute6 \
|
mtr netstat ping ping6 ps tcpdump traceroute traceroute6 \
|
||||||
)
|
)
|
||||||
for cmd in $cmds[@]; do
|
for cmd in $cmds[@]; do
|
||||||
|
|
Loading…
Reference in a new issue