dotfiles/.vimrc

60 lines
831 B
VimL
Raw Normal View History

2021-10-20 01:58:24 +02:00
" Numbers
set number
set relativenumber
" Indentation
set autoindent
" set filetype indent on
" Tab width
2022-10-16 13:52:20 +02:00
" set expandtab
set noexpandtab
2021-10-20 01:58:24 +02:00
set smarttab
set tabstop=4
set shiftwidth=4
set shiftround
" Search
set hlsearch
set ignorecase
set incsearch
set smartcase
" Performance
set complete-=i
set lazyredraw
" Rendering
set display+=lastline
set encoding=utf-8
set linebreak
set scrolloff=3
set sidescrolloff=5
set wrap
syntax on
" Interface
set laststatus=2
set wildmenu
set tabpagemax=50
set noerrorbells
2022-06-09 13:51:55 +02:00
" set visualbell
" set mouse=a
2021-10-20 01:58:24 +02:00
set title
" Folding
set foldmethod=indent
set foldnestmax=3
set nofoldenable
set autoread
set backspace=indent,eol,start
set confirm
set formatoptions+=j
set nomodeline
set noswapfile
set nrformats-=octal
set wildignore+=.pyc,.swp
2024-02-28 16:27:23 +01:00
autocmd FileType yaml setlocal ai ts=2 sw=2 et cuc nu