Mein VIM Setup

Konfigurationsdateien und -verzeichnisse

mkdir -p ~/.vim ~/.vim/autoload ~/.vim/backup ~/.vim/colors ~/.vim/plugged
touch ~/.vimrc

Meine .vimrc

set nocompatible
filetype on
filetype plugin on
filetype indent on


syntax on
set number
set cursorline
set shiftwidth=4
set tabstop=4
set expandtab
set nobackup
set scrolloff=10
set nowrap
set incsearch
set ignorecase
set smartcase
set showcmd
set showmode
set hlsearch
set history=1000

Die meisten der Einstellung werden auf freecodecamp.org vorgeschlagen und beschrieben.

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert