nvim/init.vim

29 lines
440 B
VimL
Raw Normal View History

2024-05-23 08:33:22 +02:00
source /etc/vimrc
2024-06-10 12:31:29 +02:00
"autocmd BufReadPost *
" \ if line("'\"") > 0 && line ("'\"") <= line("$") |
" \ exe "normal! g'\"" |
" \ endif
2024-05-23 08:33:22 +02:00
set modeline
set nowrap
set sidescroll=1
set scrolloff=3
set nobackup
set mouse=
set completeopt-=preview
set nofoldenable
set spellcapcheck=0
2024-06-10 12:20:59 +02:00
set sw=2
set ts=2
set et
2024-05-23 08:33:22 +02:00
set smartcase
"set smarttab
set nohlsearch
if has('nvim')
2024-06-10 12:31:29 +02:00
exec 'source' expand('~/.config/nvim/nvim.vim')
"source nvim.vim
2024-05-23 08:33:22 +02:00
endif