blob: d06b8c899ba2dcbdaeca09f24fb24b4e46a39083 (
plain) (
blame)
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
|
set all&
set number
set autoindent
set showmatch
set showmode
set errorbells
set belloff=
set title
noremap <Up> <Nop>
noremap <Down> <Nop>
noremap <Left> <Nop>
noremap <Right> <Nop>
set clipboard+=unnamedplus
set swapfile
set directory^=~/.vim/swap//
set writebackup
set nobackup
set backupcopy=auto
if has("patch-8.1.0251")
set backupdir^=~/.vim/backup//
end
set undofile
set undodir^=~/.vim/undo//
if has('autocmd')
filetype plugin indent on
endif
if has('syntax') && (&t_Co > 2 || has("gui_running"))
syntax enable
if has('extra_search')
set hlsearch
set incsearch
endif
colorscheme industry
end
if &t_Co > 16
set termguicolors
let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum"
let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum"
end
|