forked from Will-Hellinger/college-dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
26 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,37 @@ | ||
# set number | ||
# syntax on | ||
set number | ||
syntax on | ||
|
||
# set tabstop=2 | ||
# set shiftwidth=2 | ||
# set expandtab | ||
set tabstop=2 | ||
set shiftwidth=2 | ||
set expandtab | ||
|
||
# set incsearch | ||
# set hlsearch | ||
# set ignorecase | ||
set incsearch | ||
set hlsearch | ||
set ignorecase | ||
|
||
# set autoindent | ||
# set mouse=a | ||
set autoindent | ||
set mouse=a | ||
|
||
# filetype plugin on | ||
filetype plugin on | ||
|
||
# set encoding=utf-8 | ||
set encoding=utf-8 | ||
|
||
# let NERDTreeWinPos = "left" | ||
# autocmd VimEnter * NERDTree | wincmd p | ||
let NERDTreeWinPos = "left" | ||
autocmd VimEnter * NERDTree | wincmd p | ||
|
||
# set statusline+=%#warningmsg# | ||
# set statusline+=%{SyntasticStatuslineFlag()} | ||
# set statusline+=%* | ||
set statusline+=%#warningmsg# | ||
set statusline+=%{SyntasticStatuslineFlag()} | ||
set statusline+=%* | ||
|
||
# let g:syntastic_always_populate_loc_list = 1 | ||
# let g:syntastic_auto_loc_list = 1 | ||
# let g:syntastic_check_on_open = 1 | ||
# let g:syntastic_check_on_wq = 0 | ||
let g:syntastic_always_populate_loc_list = 1 | ||
let g:syntastic_auto_loc_list = 1 | ||
let g:syntastic_check_on_open = 1 | ||
let g:syntastic_check_on_wq = 0 | ||
|
||
# call plug#begin('~/.vim/plugged') | ||
call plug#begin('~/.vim/plugged') | ||
|
||
# Plug 'preservim/nerdtree' | ||
# Plug 'tpope/vim-fugitive' | ||
# Plug 'scrooloose/syntastic' | ||
Plug 'preservim/nerdtree' | ||
Plug 'tpope/vim-fugitive' | ||
Plug 'scrooloose/syntastic' | ||
|
||
# call plug#end() | ||
call plug#end() |