aboutsummaryrefslogtreecommitdiff
path: root/.vimrc
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <anhgelus.morhtuuzh@gmx.com>2023-03-15 15:15:03 +0100
committerAnhgelus Morhtuuzh <anhgelus.morhtuuzh@gmx.com>2023-03-15 15:15:03 +0100
commitd00b85784e69cc185575d0273cd1472e5e0d57a4 (patch)
treed9fb3f9bc6c3d573209c78d0893eef0c3b52c5ec /.vimrc
parentc3389bca33ce5007ebfcca55f8ae3a80995771bc (diff)
feat(vim) vim config and update install.sh and update.sh
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc30
1 files changed, 30 insertions, 0 deletions
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 <C-Left> :tabprevious<CR>
+nnoremap <C-Right> :tabnext<CR>
+nnoremap <C-j> :tabprevious<CR>
+nnoremap <C-k> :tabnext<CR>
+
+set shell=/bin/bash