diff options
| author | Anhgelus Morhtuuzh <anhgelus.morhtuuzh@gmx.com> | 2023-03-15 15:15:03 +0100 |
|---|---|---|
| committer | Anhgelus Morhtuuzh <anhgelus.morhtuuzh@gmx.com> | 2023-03-15 15:15:03 +0100 |
| commit | d00b85784e69cc185575d0273cd1472e5e0d57a4 (patch) | |
| tree | d9fb3f9bc6c3d573209c78d0893eef0c3b52c5ec /.vimrc | |
| parent | c3389bca33ce5007ebfcca55f8ae3a80995771bc (diff) | |
feat(vim) vim config and update install.sh and update.sh
Diffstat (limited to '.vimrc')
| -rw-r--r-- | .vimrc | 30 |
1 files changed, 30 insertions, 0 deletions
@@ -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 <C-Left> :tabprevious<CR> +nnoremap <C-Right> :tabnext<CR> +nnoremap <C-j> :tabprevious<CR> +nnoremap <C-k> :tabnext<CR> + +set shell=/bin/bash |
