2015-10-02 21:03:55 +02:00
|
|
|
set nocompatible
|
|
|
|
filetype off
|
|
|
|
|
|
|
|
" Install Vundle:
|
|
|
|
" $ git clone https://github.com/VundleVim/Vundle.vim.git \
|
|
|
|
" ~/.vim/bundle/Vundle.vim
|
2015-10-11 17:02:15 +02:00
|
|
|
"
|
|
|
|
" Install all plugins:
|
|
|
|
" $ vim +PluginInstall +qall
|
|
|
|
|
2015-10-28 10:03:40 +01:00
|
|
|
set rtp+=~/.vim/bundle/Vundle.vim " Set the runtime path to include Vundle and initialize.
|
2015-10-02 21:03:55 +02:00
|
|
|
call vundle#begin()
|
2015-10-28 10:03:40 +01:00
|
|
|
Plugin 'VundleVim/Vundle.vim' " Let Vundle manage Vundle, required.
|
|
|
|
Plugin 'bling/vim-airline' " Lean & mean status/tabline for vim that's light as air.
|
|
|
|
Plugin 'antoyo/vim-licenses' " Vim Plugin that Provides Commands to Add Licenses at the Top of the Buffer.
|
|
|
|
Plugin 'breard-r/vim-dnsserial' " Another DNS-zone serial number updater.
|
|
|
|
Plugin 'sjl/badwolf' " A Vim color scheme.
|
2016-07-04 13:41:28 +02:00
|
|
|
Plugin 'rust-lang/rust.vim' " Vim configuration for Rust.
|
2015-10-02 21:03:55 +02:00
|
|
|
call vundle#end()
|
|
|
|
|
2015-10-11 17:02:15 +02:00
|
|
|
|
|
|
|
syntax on " Enable syntax highlighting.
|
2015-10-19 15:39:38 +02:00
|
|
|
colorscheme badwolf " Select the theme.
|
2015-10-11 17:02:15 +02:00
|
|
|
|
|
|
|
|
|
|
|
filetype plugin indent on " Load the plugin and indent file depending on the file type.
|
|
|
|
set expandtab " Use spaces instead of tabs.
|
|
|
|
set tabstop=8 " Number of spaces that a <Tab> in the file counts for.
|
|
|
|
set softtabstop=4 " Number of spaces that a <Tab> counts for while performing editing operations.
|
|
|
|
set shiftwidth=4 " Number of spaces to use for each step of (auto)indent.
|
|
|
|
|
|
|
|
|
|
|
|
set laststatus=2 " Always display the status line.
|
|
|
|
set number " Show line numbers.
|
|
|
|
set cursorline " Highlight current line
|
|
|
|
set wildmenu " Visual autocomplete for command menu
|
|
|
|
set lazyredraw " Redraw only when we need to.
|
|
|
|
set showmatch " Highlight matching [{()}]
|
|
|
|
|
|
|
|
|
|
|
|
set incsearch " Search as characters are entered.
|
|
|
|
set hlsearch " Highlight matches.
|
|
|
|
" Turn off search highlight with <leader><space>.
|
|
|
|
nnoremap <leader><space> :nohlsearch<CR>
|
|
|
|
|
|
|
|
|
|
|
|
" Move vertically by visual line.
|
|
|
|
nnoremap j gj
|
|
|
|
nnoremap k gk
|
2015-10-11 21:48:23 +02:00
|
|
|
|
|
|
|
|
2019-03-13 13:41:30 +01:00
|
|
|
" Fix a rendering issue with terminals without the bce capability
|
|
|
|
" https://sw.kovidgoyal.net/kitty/faq.html#using-a-color-theme-with-a-background-color-does-not-work-well-in-vim
|
|
|
|
let &t_ut=''
|
|
|
|
|
|
|
|
|
2015-10-11 21:48:23 +02:00
|
|
|
" Licenses
|
|
|
|
let g:licenses_copyright_holders_name = $USER_NICKNAME
|
|
|
|
let g:licenses_authors_name = $USER_NICKNAME
|
2015-10-20 18:05:42 +02:00
|
|
|
let g:licenses_default_commands = ['affero', 'apache', 'bsd3', 'cecill', 'gfdl', 'gpl', 'gplv2', 'isc', 'lgpl', 'mit', 'mpl', 'verbatim']
|
2019-04-07 00:17:00 +02:00
|
|
|
|
|
|
|
" Line number modes
|
|
|
|
:set number relativenumber
|
|
|
|
:augroup numbertoggle
|
|
|
|
: autocmd!
|
|
|
|
: autocmd BufEnter,FocusGained,InsertLeave * set relativenumber
|
|
|
|
: autocmd BufLeave,FocusLost,InsertEnter * set norelativenumber
|
|
|
|
:augroup END
|