-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
56 lines (47 loc) · 1.02 KB
/
.vimrc
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
call plug#begin()
Plug 'arcticicestudio/nord-vim'
Plug 'scrooloose/nerdtree'
Plug 'vim-airline/vim-airline'
Plug 'frazrepo/vim-rainbow'
Plug 'airblade/vim-gitgutter'
Plug 'leafgarland/typescript-vim'
Plug 'chr4/nginx.vim'
Plug 'tiagofumo/vim-nerdtree-syntax-highlight'
Plug 'ryanoasis/vim-devicons'
call plug#end()
nmap <C-S-Up> :m -2<CR>
nmap <C-S-Down> :m +1<CR>
nnoremap <F9> :NERDTreeToggle<CR>
colorscheme nord
set cursorline
set mouse=a
syntax on
filetype on
set number
set linebreak
set showbreak=+++
set textwidth=100
set showmatch
set visualbell
set hlsearch
set smartcase
set ignorecase
set incsearch
set autoindent
set shiftwidth=4
set smartindent
set smarttab
set softtabstop=4
set tabstop=4
set expandtab
set nobackup
set scrolloff=10
set ruler
set undolevels=1000
set backspace=indent,eol,start
set encoding=UTF-8
let NERDTreeShowHidden=1
" after a re-source, fix syntax matching issues (concealing brackets):
if exists('g:loaded_webdevicons')
call webdevicons#refresh()
endif