1
0
Fork 0
mirror of https://github.com/kastdeur/dotfiles.git synced 2025-05-14 20:09:26 +02:00

Updated mainprofile, removed autoindent in vim. Set up awesome.lua with xinitrc. See if it works

This commit is contained in:
Eric-Teunis de Boone 2016-10-06 03:21:13 +02:00
parent 3bbb4d6c9a
commit cc8ca493c8
15 changed files with 600 additions and 507 deletions

View file

@ -16,20 +16,19 @@ if &term=="xterm"
set t_Sf=^[[3%dm
endif
"Auto indentation
"Auto indentation, just "za" needed
filetype indent on
" Set tabbing stuff
set autoindent
set tabstop=4
set shiftwidth=4
set noexpandtab
"Folding
augroup vimrc
au BufReadPre * setlocal foldmethod=indent
au BufWinEnter * if &fdm == 'indent' | setlocal foldmethod=manual | endif
augroup END
"augroup vimrc
" au BufReadPre * setlocal foldmethod=indent
" au BufWinEnter * if &fdm == 'indent' | setlocal foldmethod=manual | endif
"augroup END
set grepprg=grep\ -nH\ $*