Created
June 3, 2020 06:36
-
-
Save navichok26/e8cd71a022dbc24931934a9c33360574 to your computer and use it in GitHub Desktop.
My .vimrc configuration file
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
call plug#begin('~/.vim/plugged') | |
Plug 'scrooloose/nerdtree', {'on': 'NERDTreeToggle'} | |
Plug 'itchyny/lightline.vim' | |
Plug 'dracula/vim', { 'as': 'dracula' } | |
call plug#end() | |
syntax on | |
colorscheme dracula | |
set number | |
set tabstop=4 | |
set shiftwidth=4 | |
"search settings | |
set hlsearch | |
set incsearch | |
nmap <silent> <leader>n :set hlsearch!<CR> | |
"plugins setting | |
map <C-n> :NERDTreeToggle<CR> | |
set laststatus=2 | |
set noshowmode | |
let g:javascript_plugin_jsdoc = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment