Skip to content

Commit

Permalink
update something
Browse files Browse the repository at this point in the history
  • Loading branch information
0mega24 committed Jan 20, 2024
1 parent 5e4f5a0 commit 17446ea
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions .vimrc
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()

0 comments on commit 17446ea

Please sign in to comment.