This repository has been archived on 2022-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
autoconfig/config/init.vim

28 lines
282 B
VimL

"Clipboard
set clipboard+=unnamedplus
"Tabulations
set tabstop=2
set shiftwidth=2
set noexpandtab
"Mouse
set mouse=a
"Search
set ignorecase
"Completion
set wildmode=longest,list,full
"Line numbers
set number
"Color column
set cc=80
"Split side
set splitright
set splitbelow