mirror of
https://github.com/edu4rdshl/linuxscripts.git
synced 2026-07-18 07:34:45 +00:00
27 lines
658 B
VimL
27 lines
658 B
VimL
syn on
|
|
set guifont=Monospace\ Bold\ 12
|
|
let do_syntax_sel_menu = 1|runtime! synmenu.vim|aunmenu &Syntax.&Show\ File\ Types\ in\ Menu
|
|
colors industry
|
|
set background=dark
|
|
|
|
" Uncomment the following to have Vim jump to the last position when
|
|
" reopening a file
|
|
if has("autocmd")
|
|
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
|
|
endif
|
|
|
|
" Uncomment the following to have Vim load indentation rules and plugins
|
|
" according to the detected filetype.
|
|
if has("autocmd")
|
|
filetype plugin indent on
|
|
endif
|
|
|
|
set showmatch
|
|
"set mouse=a
|
|
set tabstop=4
|
|
set expandtab
|
|
set shiftwidth=4
|
|
set smartindent
|
|
set autoindent
|
|
set cindent
|
|
"
|