Skip to content

Instantly share code, notes, and snippets.

@laraconda
Last active January 23, 2023 20:33
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 laraconda/d7e5885c0c05a8edcbedfee5d0928ae5 to your computer and use it in GitHub Desktop.
Save laraconda/d7e5885c0c05a8edcbedfee5d0928ae5 to your computer and use it in GitHub Desktop.
My vim conf
set encoding=utf-8
" IMPORTANT! junegunn/vim-plug must be installed to handle the listed plugs
call plug#begin('~/.vim/plugged')
Plug 'gilgigilgil/anderson.vim'
Plug 'dracula/vim', {'as': 'dracula'}
Plug 'andreasvc/vim-256noir'
Plug 'zacanger/angr.vim'
Plug 'tyrannicaltoucan/vim-deep-space'
Plug 'yorickpeterse/happy_hacking.vim'
Plug 'joshdick/onedark.vim', {'branch': 'main'}
call plug#end()
filetype on
syntax on
colorscheme zellner
set backspace=indent,eol,start
set tabstop=4
set shiftwidth=4
set expandtab
set autoindent
" Autocomplete
set wildmenu
set wildmode=longest:full,full
" Navigate splits
nnoremap <C-J> <C-W><C-J>
nnoremap <C-K> <C-W><C-K>
nnoremap <C-L> <C-W><C-L>
nnoremap <C-H> <C-W><C-H>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment