Skip to content

Instantly share code, notes, and snippets.

@nikhil1raghav
Created December 21, 2020 16:05
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nikhil1raghav/01fb6f395b010023f362eaa1fea8fcd8 to your computer and use it in GitHub Desktop.
Save nikhil1raghav/01fb6f395b010023f362eaa1fea8fcd8 to your computer and use it in GitHub Desktop.
Neovim config
let mapleader=" "
set number
set mouse=a
syntax enable
set showcmd
set ruler
set cursorline
set encoding=utf-8
call plug#begin('~/.config/nvim/plugged')
Plug 'preservim/nerdtree'
Plug 'mhinz/vim-startify'
Plug 'itchyny/lightline.vim'
Plug 'cespare/vim-toml'
Plug 'godlygeek/tabular'
Plug 'plasticboy/vim-markdown'
Plug 'pangloss/vim-javascript'
Plug 'vim-pandoc/vim-pandoc'
Plug 'vim-pandoc/vim-pandoc-syntax'
call plug#end()
nnoremap <leader>nt :NERDTreeToggle<cr>
nnoremap <leader>nf :NERDTreeFocus<cr>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment