dotfiles/.config/nvim/init.vim

45 lines
705 B
VimL
Raw Normal View History

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
2021-11-26 23:50:02 +08:00
" softwrapping
set wrap linebreak
" search
set incsearch
2021-05-23 14:33:27 +08:00
"set nohlsearch
set ignorecase
set smartcase
" live changes when !s/search/replace/
set inccommand=split
" theme
2022-07-01 03:18:53 +08:00
set termguicolors
2022-07-01 01:52:07 +08:00
"set background=dark
"colorscheme solarized8
autocmd vimenter * ++nested colorscheme gruvbox
" transparancy for background
"hi Normal guibg=NONE ctermbg=NONE
" utf-8 encoding
set encoding=utf8
set fileencoding=utf8
2021-11-10 02:39:39 +08:00
" plugins
call plug#begin('~/.local/share/nvim/site/plugged')
Plug 'lervag/vimtex'
2022-07-01 01:52:07 +08:00
Plug 'morhetz/gruvbox'
2021-11-10 02:39:39 +08:00
call plug#end()