Last active
October 9, 2021 23:32
-
-
Save tynrare/3561b31ac2cae2c115359d09622771a1 to your computer and use it in GitHub Desktop.
dust-vimrc-0
This file contains hidden or 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
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