-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
94 lines (80 loc) · 1.81 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
"-----------------
" Function
"-----------------
set nocompatible
set clipboard=unnamed
set noswapfile
set backspace=indent,eol,start
set scrolloff=3
set smartcase
setlocal makeprg=open\ -a\ \"Google\ Chrome\"\ %
set foldmethod=syntax
set foldmethod=indent
set foldcolumn=1 " the number of columns to use for folding display at the left
set mouse=a
"-----------------
" Search
"-----------------
set ignorecase
set incsearch
set hlsearch
"-----------------
" Tab, Space
"-----------------
set softtabstop=4
set shiftwidth=4
set expandtab
"-----------------
" Tab
"-----------------
set splitbelow
set splitright
"-----------------
" Color
"-----------------
syntax on
"-----------------
" Filetype
"-----------------
filetype on
filetype indent on
filetype plugin on
"-----------------
" Plugins
"-----------------
call plug#begin('~/.vim/plugged')
Plug 'ap/vim-css-color'
Plug 'vim-airline/vim-airline'
Plug 'preservim/nerdtree'
Plug 'ctrlpvim/ctrlp.vim'
Plug 'mattn/emmet-vim'
Plug 'tpope/vim-surround'
Plug 'tpope/vim-repeat'
Plug 'tomtom/tcomment_vim'
Plug 'MarcWeber/vim-addon-mw-utils'
Plug 'tomtom/tlib_vim'
Plug 'garbas/vim-snipmate'
Plug 'honza/vim-snippets'
Plug 'preservim/tagbar'
Plug 'fratajczak/one-monokai-vim'
Plug 'jiangmiao/auto-pairs'
Plug 'vim-scripts/c.vim'
Plug 'alvan/vim-closetag'
Plug 'frazrepo/vim-rainbow'
Plug 'JuliaEditorSupport/julia-vim'
Plug 'tiagofumo/vim-nerdtree-syntax-highlight'
Plug 'Yggdroot/indentLine'
Plug 'vim-scripts/MatlabFilesEdition'
Plug 'octol/vim-cpp-enhanced-highlight'
Plug 'raingo/vim-matlab'
Plug 'goerz/jupytext.vim'
Plug 'github/copilot.vim'
Plug 'tpope/vim-fugitive'
Plug 'github/copilot.vim'
Plug 'pangloss/vim-javascript'
" Always load the vim-devicons as the very last one.
Plug 'ryanoasis/vim-devicons'
call plug#end()
syntax on
set termguicolors
colorscheme one-monokai