dotfiles/.config/nvim/init.vim
2021-11-10 02:39:39 +08:00

39 lines
596 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
set ignorecase
set smartcase
" live changes when !s/search/replace/
set inccommand=split
" theme
set termguicolors
set background=dark
colorscheme solarized8
" transparancy for background
"hi Normal guibg=NONE ctermbg=NONE
" utf-8 encoding
set encoding=utf8
set fileencoding=utf8
" plugins
call plug#begin('~/.local/share/nvim/site/plugged')
Plug 'lervag/vimtex'
call plug#end()