Files
dotfiles/vim/.vimrc
dx 9f963d7e38 -a lot of my vim config
What's the point of trying to make my vim config more like doom, when I
can just let vim do the thing it's best at: quick edits. So my shortcuts
should reflect this.
2020-07-15 15:35:24 +01:00

59 lines
926 B
VimL

filetype off
"" Plugins
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
"" Core
Plugin 'gmarik/Vundle.vim'
Plugin 'tpope/vim-dispatch'
Plugin 'SirVer/ultisnips'
Plugin 'honza/vim-snippets'
Plugin 'christoomey/vim-tmux-navigator'
"" UI
Plugin 'scrooloose/nerdtree'
"" Plugins
Plugin 'godlygeek/tabular'
Plugin 'tpope/vim-commentary'
Plugin 'tpope/vim-fugitive'
Plugin 'tpope/vim-surround'
call vundle#end()
"" Standard variables
syntax enable
filetype plugin indent on
set nocompatible
set ignorecase
set smartcase
set clipboard=unnamed
set number
set nobackup
set noundofile
set nowritebackup
set nohlsearch
set wildmenu
set tabstop=4
set softtabstop=4
set expandtab
set shiftwidth=4
set previewheight=5
set foldmethod=syntax
set foldlevel=99
set path+=**
let mapleader = ' '
"" Theming
colorscheme elflord
"" Dir Config
let g:NERDTreeHijackNetrw = 1
"" Keybinds
imap jk <Esc>
nmap <leader>f :e