zsh and nvim

This commit is contained in:
Flo
2023-02-01 13:25:23 +01:00
parent 6e93bc0868
commit 085b850d99
38 changed files with 943 additions and 0 deletions

View File

@ -0,0 +1,29 @@
let mapleader=" "
" Use system clipboard
set clipboard+=unnamedplus
set mouse=v
syntax on
set ignorecase
set smartcase
set encoding=utf-8
set number relativenumber
" Tab Settings
set expandtab
set shiftwidth=2
set softtabstop=2
set tabstop=2
set path=.,,**
" Autocompletion
set wildmode=longest,list,full
" Fix splitting
set splitbelow splitright
" Cursor line
set cursorline
set cursorcolumn