From d00b85784e69cc185575d0273cd1472e5e0d57a4 Mon Sep 17 00:00:00 2001 From: Anhgelus Morhtuuzh Date: Wed, 15 Mar 2023 15:15:03 +0100 Subject: feat(vim) vim config and update install.sh and update.sh --- .vimrc | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .vimrc (limited to '.vimrc') diff --git a/.vimrc b/.vimrc new file mode 100644 index 0000000..a8934b2 --- /dev/null +++ b/.vimrc @@ -0,0 +1,30 @@ +set nocompatible " be iMproved, required +filetype off " required + +syntax on +colorscheme onedark + +" set the runtime path to include Vundle and initialize +set rtp+=~/.vim/bundle/Vundle.vim +call vundle#begin() + +" let Vundle manage Vundle, required +Plugin 'VundleVim/Vundle.vim' + +" Plugins +Plugin 'godlygeek/tabular' +" Plugin 'preservim/vim-markdown' +Plugin 'vim-pandoc/vim-pandoc' +Plugin 'vim-pandoc/vim-pandoc-syntax' + + +call vundle#end() " required +filetype plugin indent on " required + +set number relativenumber +nnoremap :tabprevious +nnoremap :tabnext +nnoremap :tabprevious +nnoremap :tabnext + +set shell=/bin/bash -- cgit v1.2.3