-- Add gitignore-global file for junk like .DS_Store -- Add shell-script syntax highlighting to spacemacs config -- Turn off smooth-scrolling in terminal-mode buffers -- Disable missing "socerer" vim theme.
23 lines
296 B
VimL
23 lines
296 B
VimL
syntax on
|
|
filetype off
|
|
filetype plugin indent on
|
|
|
|
set background=dark
|
|
|
|
set number
|
|
|
|
" indentation options
|
|
set autoindent
|
|
set smartindent
|
|
|
|
set softtabstop=2
|
|
set tabstop=2
|
|
set shiftwidth=2
|
|
set expandtab
|
|
|
|
" turn off error sound
|
|
set vb t_vb=
|
|
" show line numbers in lower right
|
|
set ruler
|
|
set incsearch
|