1
0
Fork 0

oops, vim func was broken

This commit is contained in:
Von Random 2018-07-04 19:25:37 +03:00
parent 83b95408ba
commit b078daa648
3 changed files with 2 additions and 3 deletions

View file

@ -24,7 +24,6 @@ set -g set-titles "on"
set -g set-titles-string "[#h:#S] #W" 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 terminal-overrides ',rxvt-unicode-256color:Tc'
set -g default-terminal "tmux-256color" set -g default-terminal "tmux-256color"
set -g status "on" set -g status "on"
set -g status-interval 2 set -g status-interval 2

2
vimrc
View file

@ -67,7 +67,7 @@ if v:version >= 800
" enable packs based on filetype " enable packs based on filetype
let g:ale_python_flake8_executable = 'python2' let g:ale_python_flake8_executable = 'python2'
autocmd FileType python packadd ale autocmd FileType python packadd ale | packadd jedi-vim
autocmd FileType sh packadd ale autocmd FileType sh packadd ale
if $TERM != 'linux' if $TERM != 'linux'

2
zshrc
View file

@ -242,7 +242,7 @@ s() {
# prefer neovim over vim # prefer neovim over vim
vim() { vim() {
local vim local vim
vim=$(whence nvim) || vimbin=$(whence vim) vim=$(whence nvim) || vim=$(whence vim)
$vim "$@" $vim "$@"
} }
# }}} # }}}