-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vimrc_simple
More file actions
40 lines (30 loc) · 3.48 KB
/
.vimrc_simple
File metadata and controls
40 lines (30 loc) · 3.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
" ------------------------ Vundle -----------------------------
" git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
set nocompatible " be iMproved, required
filetype off " required
set encoding=utf-8
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
" -------------------------------------------------------------
Plugin 'bling/vim-airline'
Plugin 'scrooloose/nerdtree'
Plugin 'arcticicestudio/nord-vim'
call vundle#end() " required
filetype plugin indent on " required
" -------------------------------------------------------------
syntax on
set term=screen-256color
set hlsearch " auto highlight search
nnoremap <silent> <Space> :nohlsearch<Bar>:echo<CR>
set showmatch " show matching bracket
set autoindent
set smartindent
set cindent
set tabstop=4
set expandtab
set shiftwidth=4
"set softtabstop=4
set ruler
set mouse=a " scolling with mouse
set number