Updated .vimrc configuration to use Pathogen plugin manager
This commit is contained in:
parent
6410d98d82
commit
602c762363
|
@ -1,2 +1,26 @@
|
||||||
set tabstop=2 shiftwidth=2 expandtab autoindent mouse=a
|
|
||||||
|
" Set tabwidth=2, adjust Vim shiftwidth to the same
|
||||||
|
set tabstop=2 shiftwidth=2
|
||||||
|
|
||||||
|
" expandtab inserts spaces instead of tabs
|
||||||
|
set expandtab
|
||||||
|
|
||||||
|
" autindent inserts the next line at your current depth
|
||||||
|
set autoindent
|
||||||
|
|
||||||
|
" mouse=a allows for mouse interaction with vim when supported
|
||||||
|
set mouse=a
|
||||||
|
|
||||||
|
" Enable Syntax Highlighting in Vim
|
||||||
syntax on
|
syntax on
|
||||||
|
|
||||||
|
" Enable Pathogen plugin manager
|
||||||
|
execute pathogen#infect()
|
||||||
|
filetype plugin indent on
|
||||||
|
|
||||||
|
" Enable clang_complete plugin for vim
|
||||||
|
" https://github.com/xavierd/clang_complete
|
||||||
|
" Requires clang to be installed
|
||||||
|
" Path to library may change
|
||||||
|
let g:clang_library_path='/usr/lib64/libclang.so.8'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue