Tweaking vim options.

This commit is contained in:
Bartek Stalewski 2022-05-23 01:16:14 +02:00
parent 4b06942eca
commit dc348b8201

View file

@ -12,37 +12,27 @@ Plug 'RRethy/vim-hexokinase', { 'do': 'make hexokinase' }
call plug#end() call plug#end()
set number set number
set notitle
set gdefault set gdefault
set wildmenu
set nobackup
set incsearch
set expandtab set expandtab
set smartcase set smartcase
set splitbelow set splitbelow
set splitright set splitright
set ignorecase set ignorecase
set autoindent
set nohlsearch set nohlsearch
set noshowmode set noshowmode
set shiftround set shiftround
set cursorline set cursorline
set cursorcolumn set cursorcolumn
set nojoinspaces
set nowritebackup set nowritebackup
set bs=2
set tabstop=2 set tabstop=2
set scrolloff=5 set scrolloff=5
set shortmess-=S set shortmess-=S
set backspace=eol,start,indent
set matchpairs+=(:),{:},[:],<:>,':',":" set matchpairs+=(:),{:},[:],<:>,':',":"
set laststatus=2
set updatetime=100 set updatetime=100
set shiftwidth=2 set shiftwidth=2
set showtabline=0 set showtabline=0
set softtabstop=2 set softtabstop=2
set winminheight=0
nmap <tab> <C-w>w nmap <tab> <C-w>w
nmap <Esc><CR> :wq!<CR> nmap <Esc><CR> :wq!<CR>