dotfiles/files/vimrc

31 lines
528 B
VimL
Raw Normal View History

2021-11-04 11:15:32 +01:00
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
2022-03-31 16:11:36 +02:00
nmap <Space> <Plug>(easymotion-bd-w)
2022-03-31 15:45:52 +02:00
2021-11-04 11:15:32 +01:00
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'
2022-03-31 16:11:36 +02:00
Plug 'asvetliakov/vim-easymotion'
2021-11-04 11:15:32 +01:00
call plug#end()