Last active
January 23, 2023 20:33
-
-
Save laraconda/d7e5885c0c05a8edcbedfee5d0928ae5 to your computer and use it in GitHub Desktop.
My vim conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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