summaryrefslogtreecommitdiff
path: root/.vimrc
diff options
context:
space:
mode:
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc27
1 files changed, 20 insertions, 7 deletions
diff --git a/.vimrc b/.vimrc
index 8f06d50..f67dd6c 100644
--- a/.vimrc
+++ b/.vimrc
@@ -1,12 +1,25 @@
syntax on
-
-
-
-
-
-
-
+set tabstop=4 softtabstop=4
+set shiftwidth=4
+set expandtab
+set smartindent
+set nu
+set relativenumber
+"set nowrap
+set smartcase
+set noswapfile
+set nobackup
+set undodir=~/.vim/undodir
+set undofile
+set incsearch
+set nohlsearch
+"set signcolumn=yes
+
+call plug#begin('~/.vim/plugged')
+Plug 'vim-airline/vim-airline'
+Plug 'vim-airline/vim-airline-themes'
+call plug#end()
"Recomplile suckless(dwm/st) programs automatically whenever its updated