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
Raw Normal View History

2022-02-05 17:48:47 +01:00
"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