dotfiles/.vimrc

14 lines
362 B
VimL
Raw Normal View History

2024-11-04 21:23:14 +01:00
" Attempt to determine the type of a file based on its name and possibly its
" contents. Use this to allow intelligent auto-indenting for each filetype,
" and for plugins that are filetype specific.
if has('filetype')
filetype indent plugin on
endif
" Enable syntax highlighting
if has('syntax')
syntax on
endif
set clipboard=unnamedplus
set encoding=utf-8