mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
chore(nvim): add settings
This commit is contained in:
36
nvim/init.vim
Normal file
36
nvim/init.vim
Normal file
@@ -0,0 +1,36 @@
|
||||
" *** *** *** Global Settings *** *** ***
|
||||
" ***************************************
|
||||
|
||||
set expandtab
|
||||
set autowrite
|
||||
set showbreak=↪
|
||||
set ignorecase
|
||||
set smartcase
|
||||
set list
|
||||
set listchars=tab:▸\ ,trail:·,nbsp:.,extends:❯,precedes:❮
|
||||
set visualbell
|
||||
set number
|
||||
set relativenumber
|
||||
set backspace=indent,eol,start " Intuitive backspacing
|
||||
set hidden
|
||||
set iskeyword+=- " Add dashes to words
|
||||
set cpoptions+=$ " Don't delete the word, but put a $ to the end till exit the mode
|
||||
set title
|
||||
set shortmess=caoOtI " Welcome screen
|
||||
set tabstop=2
|
||||
set shiftwidth=2
|
||||
set softtabstop=2
|
||||
set expandtab
|
||||
set copyindent
|
||||
set shiftround
|
||||
set spelllang=de_de,en_us
|
||||
set timeoutlen=500
|
||||
set foldmethod=syntax
|
||||
set splitbelow
|
||||
set splitright
|
||||
set scrolloff=8
|
||||
set sidescrolloff=8
|
||||
set virtualedit=all
|
||||
set cursorline
|
||||
set complete+=i,k,s,kspell
|
||||
set wildmode=longest:full,full
|
||||
Reference in New Issue
Block a user