mirror of
https://github.com/cupcakearmy/dotfiles.git
synced 2024-11-01 04:54:10 +01:00
31 lines
528 B
VimL
31 lines
528 B
VimL
syntax on
|
|
|
|
set number relativenumber
|
|
set noerrorbells
|
|
set tabstop=2 softtabstop=2
|
|
set shiftwidth=2
|
|
set expandtab
|
|
set smartindent
|
|
set nu
|
|
set nowrap
|
|
set smartcase
|
|
set noswapfile
|
|
set nobackup
|
|
set undodir=~/.vim/undodir
|
|
set undofile
|
|
set incsearch
|
|
|
|
nmap <Space> <Plug>(easymotion-bd-w)
|
|
|
|
call plug#begin('~/.vim/plugged')
|
|
|
|
Plug 'morhetz/gruvbox'
|
|
Plug 'scrooloose/nerdtree'
|
|
Plug 'itchyny/lightline.vim'
|
|
Plug 'junegunn/fzf'
|
|
Plug 'junegunn/fzf.vim'
|
|
Plug 'editorconfig/editorconfig-vim'
|
|
Plug 'asvetliakov/vim-easymotion'
|
|
|
|
call plug#end()
|