added plugins

This commit is contained in:
Thies Lennart Alff 2022-04-29 12:01:39 +02:00
parent 314ef0c5fd
commit 7477ca3135

27
.vimrc
View file

@ -1,13 +1,36 @@
set nocompatible
" required for vundle
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'preservim/nerdtree'
Plugin 'ycm-core/YouCompleteMe'
call vundle#end()
filetype plugin indent on
syntax on
"disable soft wraps
set nowrap
augroup WrapLine
autocmd!
autocmd FileType txt setlocal wrap
autocmd FileType rst setlocal wrap
augroup End
" enable line numbers
set number
set number relativenumber
set nu rnu
set ruler
set visualbell
set encoding=utf-8
set ttyfast
" always show mode
" always show mode status line
set laststatus=2
" always show mode
set showmode
inoremap jj <ESC>
set t_Co=256