dotfiles/.config/nvim/init.vim
2021-05-05 15:10:59 +08:00

31 lines
447 B
VimL

filetype plugin on
syntax on
" numbering
set number
set relativenumber
" indenting
set autoindent
set smartindent
set tabstop=4
set shiftwidth=4
filetype plugin indent on
" search
set incsearch
set nohlsearch
" live changes when !s/search/replace/
set inccommand=split
" theme
set background=dark
colorscheme solarized
" transparancy for background
"hi Normal guibg=NONE ctermbg=NONE
" utf-8 encoding
set encoding=utf8
set fileencoding=utf8