colorscheme nightshade runtime! debian.vim set showmatch set hlsearch "Highlight search thing set number "Show the line numbers set background=dark set ls=2 " allways show status line set tabstop=4 " numbers of spaces of tab character set shiftwidth=4 " numbers of spaces to (auto)indent set title " show title in console title bar set showmatch " Show matching brackets. set incsearch " Incremental search set ruler " show the cursor position all the time set mouse=a " Enable mouse usage (all modes) in terminals set guifont=Monospace\ 8 " use this font syntax on if has ("gui_running") set lines=100 " height = 50 lines set columns=50 " width = 100 columns set selectmode=mouse,key,cmd endif "set compatible "set showcmd " Show (partial) command in status line. "set ignorecase " Do case insensitive matching "set smartcase " Do smart case matching "set autowrite " Automatically save before commands like :next and :make "set hidden " Hide buffers when they are abandoned " Uncomment the following to have Vim jump to the last position when " reopening a file "if has("autocmd") " au BufReadPost * if line("'\"") > 0 && 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 " Source a global configuration file if available " XXX Deprecated, please move your changes here in /etc/vim/vimrc "if filereadable("/etc/vim/vimrc.local") " source /etc/vim/vimrc.local "endif