You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
555 B
16 lines
555 B
2 years ago
|
" General Configurations (Any language/Tool)
|
||
|
|
||
|
" Stripping trailing whitespace on save
|
||
|
autocmd BufWritePre * :%s/\s\+$//e
|
||
|
|
||
|
" Standard variables
|
||
|
set expandtab " tabs to spaces
|
||
|
set tabstop=2 " spaces entered when tab key is pressed
|
||
|
set shiftwidth=2 " spaces entered for indentation
|
||
|
set number " Line numbering
|
||
|
set clipboard+=unnamedplus " Share system clipboard
|
||
|
set eol " End of line at bottom of file
|
||
|
set shiftround
|
||
|
set list
|
||
|
set list listchars=tab:»·,trail:·
|