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

29 lines
289 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
"Text wrap
set tw=79
set cc=80
"Split side
set splitright
set splitbelow