summaryrefslogtreecommitdiff
blob: 378d91e6ecf7812a199aee555c7a1444a0ce5b34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
set encoding=utf-8

set ignorecase
set smartcase

set title

set backupdir=~/.vim-tmp,/tmp
set directory=~/.vim-tmp,/tmp

set ruler

filetype plugin indent on

set ai
set expandtab
set tabstop=4
set shiftwidth=4

autocmd BufEnter * :syntax sync fromstart

set hlsearch
colorscheme peachpuff

set wildignore+=*/tmp/*,*.so,*.swp,*.zip,*.o,*.dSYM,tags
Powered by cgit v1.2.3 (git 2.41.0)