Skip to content

Instantly share code, notes, and snippets.

@navichok26
Created June 3, 2020 06:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save navichok26/e8cd71a022dbc24931934a9c33360574 to your computer and use it in GitHub Desktop.
Save navichok26/e8cd71a022dbc24931934a9c33360574 to your computer and use it in GitHub Desktop.
My .vimrc configuration file
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