-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vimrc
More file actions
executable file
·66 lines (59 loc) · 1.65 KB
/
.vimrc
File metadata and controls
executable file
·66 lines (59 loc) · 1.65 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
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
" vundle setup
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'tpope/vim-fugitive'
Plugin 'kien/ctrlp.vim'
Plugin 'scrooloose/nerdtree'
Plugin 'vim-airline/vim-airline'
Plugin 'scrooloose/syntastic'
Plugin 'flazz/vim-colorschemes'
Plugin 'felixhummel/setcolors.vim'
"Plugin 'Valloric/YouCompleteMe'
"Plugin 'dart-lang/dart-vim-plugin'
"Plugin 'thosakwe/vim-flutter'
"Plugin 'neoclide/coc.nvim'
call vundle#end()
filetype plugin indent on
syntax on
colorscheme nord "default / with iterm nord
filetype plugin indent on
autocmd FileType make setlocal noexpandtab
autocmd GUIEnter * set visualbell t_vb=
"set tw=80
"set cc=+1
set encoding=utf-8
set fileencoding=utf-8
set t_Co=256
set tabstop=4
set shiftwidth=4
set expandtab
set showmatch "set show matching parenthesis
set ignorecase "ignore case when searching
set smartcase "ignore case if search pattern is all lowercase, case-sensitive otherwise
set hlsearch "highlight search terms
set incsearch "show search matches as you type
set history=1000 "remember more commands and search history
set undolevels=1000 "use many muchos levels of undo
set wildignore=*.swp,*.bak,*.pyc,*.class
set title "change the terminal's title
set visualbell "don't beep
set noerrorbells "don't beep
set nobackup
set noswapfile
set noerrorbells visualbell t_vb=
set laststatus=2
"set fdc=4
"set fdl=1
set number
set splitright
set splitbelow
" relartive numbers
":set number relativenumber
":augroup numbertoggle
": autocmd!
": autocmd BufEnter,FocusGained,InsertLeave * set relativenumber
": autocmd BufLeave,FocusLost,InsertEnter * set norelativenumber
":augroup END