Skip to content

Instantly share code, notes, and snippets.

@alexsasharegan
Last active December 12, 2017 05:28
Show Gist options
  • Save alexsasharegan/4b4433b6b876e6bc357be320ea95e2a7 to your computer and use it in GitHub Desktop.
Save alexsasharegan/4b4433b6b876e6bc357be320ea95e2a7 to your computer and use it in GitHub Desktop.
" Specify a directory for plugins
" - For Neovim: ~/.local/share/nvim/plugged
" - Avoid using standard Vim directory names like 'plugin'
call plug#begin('~/.vim/plugged')
Plug 'sheerun/vim-polyglot'
Plug 'itchyny/lightline.vim'
Plug 'joshdick/onedark.vim'
call plug#end()
set tabstop=2
set softtabstop=2
" Show line numbers
set number
" Drawing the cursorline slows scrolling
" set cursorline
" set lazyredraw
set showmatch
set laststatus=2
set noshowmode
set backspace=indent,eol,start
set timeoutlen=1000 ttimeoutlen=0
let g:onedark_termcolors=256
let g:onedark_terminal_italics=1
let g:lightline = {
\ 'colorscheme': 'onedark',
\ }
runtime macros/matchit.vim
syntax on
colorscheme onedark
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment