-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vimrc
More file actions
84 lines (53 loc) · 1.21 KB
/
.vimrc
File metadata and controls
84 lines (53 loc) · 1.21 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
filetype plugin indent on
syntax on
colorscheme habamax
set title
set backspace=indent,eol,start
set noerrorbells
set confirm
set hidden
set encoding=utf-8
set splitbelow
set splitright
set path=.,**
set noswapfile
set nobackup
set undodir=~/.vim/undodir
set undofile
set number
set relativenumber
set scrolloff=8
set cursorline
let &t_SI="\e[6 q"
let &t_EI="\e[2 q"
set nowrap
set linebreak
set autoindent
set smartindent
set expandtab
set tabstop=4
set softtabstop=4
set shiftwidth=4
set ignorecase
set smartcase
set incsearch
set hls
let @/ = ""
set laststatus=2
hi Normal guibg=NONE ctermbg=NONE
hi CursorLine guibg=#202130
hi Comment cterm=italic gui=italic
hi VertSplit ctermbg=NONE guibg=NONE ctermfg=7 guifg=#c1c2d0
hi TabLine guifg=#9192a0 guibg=#303140 gui=none
hi TabLineSel guifg=#a1a2b0 guibg=#101120 gui=bold
hi TabLineFill guifg=#9192a0 guibg=#303140 gui=none
hi Visual guifg=NONE guibg=#fdf0d5
set wildmenu
set wildmode=longest,full
set complete+=kspell
set completeopt=menuone,longest
set shortmess+=c
set spelllang=pt_br,en
set nospell
hi statusline cterm=NONE ctermfg=0 ctermbg=7 guibg=#c1c2d0 guifg=#000000
hi statuslinenc cterm=NONE ctermfg=0 ctermbg=240 guibg=#616270 guifg=#000000