dotfiles/.vimrc
2024-11-04 20:23:14 +00:00

14 lines
362 B
VimL

" 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