-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.vim
More file actions
executable file
·50 lines (41 loc) · 1.24 KB
/
Copy pathinit.vim
File metadata and controls
executable file
·50 lines (41 loc) · 1.24 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
" _
" _ __ ___ _____ _(_)_ __ ___
" | '_ \ / _ \/ _ \ \ / / | '_ ` _ \
" | | | | __/ (_) \ V /| | | | | | |
" |_| |_|\___|\___/ \_/ |_|_| |_| |_|
"
"
" __________________________________________
" / Here is my neovim configuration with \
" | comments, remember to check before using |
" | the configuration. |
" \ --Zachary /
" ------------------------------------------
" \ ,__,
" \ (oo)____
" (__) )\
" ||--|| *
"
"let g:python_host_prog="/usr/bin/python2.7"
"let g:python3_host_prog="/usr/bin/python3.8"
" Load enviroment.
lua require('env')
" load nvim base setting.
lua require('settings')()
" load plugins.
lua require('plugin')
" lazy.nvim commands (optional convenience aliases)
"command! LazySync lua require('lazy').sync()
"command! LazyUpdate lua require('lazy').update()
"command! LazyInstall lua require('lazy').install()
"command! LazyClean lua require('lazy').clean()
"command! LazyProfile lua require('lazy').profile()
" load auto groups.
lua require('autocmds')
" experimental
set lazyredraw
exec "nohlsearch"
if has('persistent_undo')
set undofile
set undodir=$HOME/.tmp/undo
endif