vim-settings/vimrc

53 lines
1.4 KiB
VimL
Raw Normal View History

2015-03-26 17:09:26 +00:00
" A lot of inspiration from Shougo
2012-07-02 17:25:36 +00:00
2015-03-26 17:09:26 +00:00
" Note: Skip initialization for vim-tiny or vim-small.
if !1 | finish | endif
2012-07-02 17:25:36 +00:00
2015-03-26 17:09:26 +00:00
if &compatible
set nocompatible
2013-03-18 02:19:44 +00:00
endif
2015-03-27 00:54:29 +00:00
function! s:smart_source_rc(name)
call s:source_rc(a:name . '.rc.vim')
call s:source_rc(a:name . '.local.rc.vim')
2015-03-26 17:09:26 +00:00
endfunction
2015-03-27 00:54:29 +00:00
function! s:source_rc(path)
2015-03-26 17:11:36 +00:00
let l:f_path = fnameescape(expand('~/.vim/rc/' . a:path))
2015-03-26 17:09:26 +00:00
if filereadable(l:f_path)
execute 'source' . l:f_path
endif
endfunction
let s:is_windows = has('win16') || has('win32') || has('win64')
let s:is_cygwin = has('win32unix')
let s:is_sudo = $SUDO_USER !=# '' && $USER !=# $SUDO_USER
\ && $HOME !=# expand('~'.$USER)
\ && $HOME ==# expand('~'.$SUDO_USER)
function! IsWindows()
return s:is_windows
endfunction
function! IsMac()
return !s:is_windows && !s:is_cygwin
\ && (has('mac') || has('macunix') || has('gui_macvim') ||
\ (!executable('xdg-open') &&
\ system('uname') =~? '^darwin'))
endfunction
" Auto install vim-plug
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall
2014-11-04 18:18:22 +00:00
endif
2015-03-27 00:54:29 +00:00
call s:source_rc('init.rc.vim')
call s:smart_source_rc('keymap')
2015-03-26 17:09:26 +00:00
call plug#begin()
2015-03-27 00:54:29 +00:00
call s:smart_source_rc('plugins')
2015-03-26 17:09:26 +00:00
call plug#end()
2015-03-27 00:54:29 +00:00
call s:smart_source_rc('edit')
call s:smart_source_rc('ui')