From fd25bced72634ce55b057abaabe02df70501ff7e Mon Sep 17 00:00:00 2001 From: Titouan Rigoudy Date: Sat, 8 Sep 2018 15:33:34 +0000 Subject: [PATCH] Enable syntax highlighting and filetype detection in Vim. --- config.vim | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config.vim b/config.vim index aed985b..ee93c77 100644 --- a/config.vim +++ b/config.vim @@ -63,6 +63,12 @@ set nobackup set nowb set noswapfile +" Enable syntax highlighting. +syntax enable + +" Enable filetype plugins. +filetype plugin on +filetype indent on " Make moving around tabs and windows work like tmux.