vsc-dotfiles/init.vim
2021-02-22 14:18:28 +01:00

32 lines
445 B
VimL

set list
set listchars=tab:→\ ,trail:␣,nbsp:⋅
set noruler
set laststatus=2
set number
set relativenumber
set expandtab
set tabstop=2
set shiftwidth=2
set softtabstop=2
set smartindent
nnoremap <c-h> <c-w>h
nnoremap <c-j> <c-w>j
nnoremap <c-k> <c-w>k
nnoremap <c-l> <c-w>l
nnoremap ö :
set ignorecase
set smartcase
set incsearch
set showmatch
set hlsearch
nnoremap <silent> <space> :noh<CR>
noremap / /\v
nnoremap * *N
noh
set hidden