Skip to content

Instantly share code, notes, and snippets.

@navichok26
Created June 3, 2020 06:36
Show Gist options
  • Save navichok26/e8cd71a022dbc24931934a9c33360574 to your computer and use it in GitHub Desktop.
Save navichok26/e8cd71a022dbc24931934a9c33360574 to your computer and use it in GitHub Desktop.

Revisions

  1. navichok26 created this gist Jun 3, 2020.
    26 changes: 26 additions & 0 deletions .vimrc
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,26 @@
    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