-
Notifications
You must be signed in to change notification settings - Fork 0
/
_gvimrc
44 lines (37 loc) · 845 Bytes
/
_gvimrc
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
syntax on
set nocompatible
filetype plugin indent on
set number
set ruler
set encoding=utf-8
set wrap
set tabstop=4
set shiftwidth=4
set softtabstop=0
set noexpandtab
set noshiftround
set preserveindent
set copyindent
set scrolloff=6
set backspace=indent,eol,start
set matchpairs+=<:>
set hidden
set ttyfast
set showmode
set showcmd
set hls
set incsearch
set ignorecase
set smartcase
set showmatch
set t_Co=256
colorscheme blue
nnoremap <C-v> :e C:\Program Files (x86)\Vim\_gvimrc <CR>
autocmd filetype cpp nnoremap <F5> :w <bar> !g++ -std=c++14 % -o %:r -Wl,--stack,268435456<CR>
autocmd filetype cpp nnoremap <F9> :!%:r<CR>
inoremap { {}<left>
inoremap {<CR> {<CR>}<Esc>O
inoremap {{ {
inoremap {} {}
set guifont=Consolas:h16:cANSI:qDRAFT
cd C:\Users\AquaBlaze\Desktop\Competitive_Programing