Skip to content

Commit c13cdd3

Browse files
committed
improvements
1 parent 025a05c commit c13cdd3

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

setup.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -183,4 +183,4 @@ else
183183
echo "Install this plugin and then compile it in order to use its completion service."
184184
open_info $YCM_INSTALL
185185
fi
186-
186+
vim

vimrc

+4-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,6 @@ autocmd BufWinLeave *.py :TagbarClose
171171
"=====================================================
172172
let NERDTreeIgnore=['\.pyc$', '\.pyo$', '__pycache__$'] " Ignore files in NERDTree
173173
let NERDTreeWinSize=40
174-
autocmd VimEnter * if !argc() | NERDTree | endif " Load NERDTree only if vim is run without arguments
175174
nmap " :NERDTreeToggle<CR>
176175
177176
"=====================================================
@@ -368,3 +367,7 @@ vno <left> <Nop>
368367
vno <right> <Nop>
369368
vno <up> <Nop>
370369

370+
371+
autocmd StdinReadPre * let g:isReadingFromStdin = 1
372+
autocmd VimEnter * nested if !argc() && !exists('g:isReadingFromStdin') | Startify | endif
373+
autocmd VimEnter * nested if !argc() && !exists('g:isReadingFromStdin') | NERDTree | endif

0 commit comments

Comments
 (0)