-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocal_init.vim
29 lines (21 loc) · 903 Bytes
/
local_init.vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
let g:startify_session_dir = '~/.config/nvim/session'
let g:startify_files_number = 4
let g:startify_lists = [
\{ 'header': [' Sessions'], 'type': 'sessions' },
\{ 'header': [' MRU'. getcwd()], 'type': 'dir' },
\{ 'header': [' MRU DIR'], 'type': 'files' }
\]
let g:startify_custom_header =
\ startify#pad(split(system('fortune | cowsay -f moose'), '\n'))
set mouse=a
" Becauce we dont need fancy separators
let g:airline#extensions#tabline#left_sep = ' '
let g:airline#extensions#tabline#left_alt_sep = '|'
let g:airline_left_sep = ''
let g:airline_left_alt_sep = ''
let g:airline_right_sep = ''
let g:airline_right_alt_sep = ''
" Lets make typescript working...
let g:typescript_compiler_binary = 'tsc'
let g:typescript_compiler_options = ''
let g:typescript_opfirst='\%([<>=,?^%|*/&]\|\([-:+]\)\1\@!\|!=\|in\%(stanceof\)\=\>\)'