Skip to content

Instantly share code, notes, and snippets.

@tynrare
Last active October 9, 2021 23:32
Show Gist options
  • Save tynrare/3561b31ac2cae2c115359d09622771a1 to your computer and use it in GitHub Desktop.
Save tynrare/3561b31ac2cae2c115359d09622771a1 to your computer and use it in GitHub Desktop.
dust-vimrc-0
set nocompatible " be iMproved, required
filetype on " required
syntax on
set encoding=utf-8
let g:airline_powerline_fonts = 1
let g:vim_markdown_folding_disabled = 1
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*
set cursorline
hi CursorLine term=none cterm=none
"set spell spelllang=en_us,ru
set smartindent
set tabstop=2
set shiftwidth=2
set showcmd
map <F4> :execute "vimgrep /" . expand("<cword>") . "/j **" <Bar> cw<CR>
map <F5> :YcmCompleter GoTo<CR>
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
Plugin 'morhetz/gruvbox'
Plugin 'sonph/onehalf'
Plugin 'https://github.com/ycm-core/YouCompleteMe'
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
Plugin 'sbdchd/neoformat'
Plugin 'vim-syntastic/syntastic'
Plugin 'preservim/nerdtree'
Plugin 'https://github.com/vim-scripts/DoxygenToolkit.vim'
Plugin 'digitaltoad/vim-pug'
Plugin 'othree/html5.vim'
call vundle#end() " required
filetype plugin indent on " required
" autocmd vimenter * ++nested colorscheme gruvbox
" autocmd VimEnter * NERDTree
set t_Co=256
set background=light
colorscheme onehalflight
let g:airline_theme='onehalflight'
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment