-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc
More file actions
25 lines (20 loc) · 696 Bytes
/
Copy pathvimrc
File metadata and controls
25 lines (20 loc) · 696 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
" Load functions
source ~/.vim/startup/functions/vimscript-helpers.vim
source ~/.vim/startup/functions/environment.vim
source ~/.vim/startup/functions/directories.vim
source ~/.vim/startup/functions/formatting.vim
" Load each specialized settings file
source ~/.vim/startup/settings.vim
source ~/.vim/startup/plugins.vim
source ~/.vim/startup/mappings.vim
" GVim Settings
if has("gui_running")
colorscheme onedark " desert
set guifont=Monospace\ 11
set guioptions-=L " prevents gvim from resizing after opening a new split
set guioptions-=e " prevents gvim from resizing after opening a new tab
else
colorscheme desert256
endif
set encoding=utf-8
set fileencodings=utf-8