points/.vimrc

20 lines
260 B
VimL
Raw Normal View History

2024-08-29 10:43:43 +02:00
" :help nvim-from-vim
" :checkhealth
colorscheme darkblue
2024-11-12 21:17:29 +01:00
syntax on
2024-08-29 10:43:43 +02:00
set background=dark
2024-11-12 21:17:29 +01:00
set hlsearch
set ignorecase
set incsearch
set mouse=a
set number
set relativenumber
set scrolloff=2
2024-10-18 19:14:21 +02:00
set shiftwidth=2
2024-11-12 21:17:29 +01:00
set smartcase
2024-12-04 16:45:27 +01:00
set undofile
2024-11-12 21:17:29 +01:00
set nowrap
set nowrapscan