Moved config to ~/.vim/config/*.vim instead of having them all in .vimrc
This commit is contained in:
21
vim/.vim/config/basics.vim
Normal file
21
vim/.vim/config/basics.vim
Normal file
@@ -0,0 +1,21 @@
|
||||
" Basics
|
||||
syntax on
|
||||
filetype indent plugin on
|
||||
set background=light
|
||||
set encoding=utf-8
|
||||
set autowrite
|
||||
set smartcase
|
||||
set incsearch
|
||||
set hlsearch
|
||||
set nospell
|
||||
|
||||
" Tab behavior
|
||||
set expandtab
|
||||
set tabstop=4
|
||||
set shiftwidth=4
|
||||
set softtabstop=4
|
||||
|
||||
"" New window positions
|
||||
set splitbelow
|
||||
set splitright
|
||||
|
||||
Reference in New Issue
Block a user