diff options
| author | Mitch Riedstra <mitch@riedstra.us> | 2018-09-19 17:27:49 -0400 |
|---|---|---|
| committer | Mitch Riedstra <mitch@riedstra.us> | 2018-09-19 17:27:49 -0400 |
| commit | 3c8e90b8a6a7e1a1df8202557c5bb6c8c37ead7a (patch) | |
| tree | 2ad51a6f7c8e88e24ed981d0c4f27b6d9678c454 /basic.vim | |
| parent | 8c57fb276c619d5f36444859c228eb8ebc3e0a47 (diff) | |
| download | vim-cfg-3c8e90b8a6a7e1a1df8202557c5bb6c8c37ead7a.tar.gz vim-cfg-3c8e90b8a6a7e1a1df8202557c5bb6c8c37ead7a.tar.xz | |
Added a basic vimrc for copying to other systems
Diffstat (limited to 'basic.vim')
| -rw-r--r-- | basic.vim | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/basic.vim b/basic.vim new file mode 100644 index 0000000..6e7f86b --- /dev/null +++ b/basic.vim @@ -0,0 +1,17 @@ +" Basic vimrc for systems you don't want to copy the full one to +set background=dark +set nu +set encoding=utf-8 +set listchars=tab:▸\ ,eol:¬,trail:• +set colorcolumn=80 +set fileencoding=utf-8 +set ic +set hls +set updatecount=0 +set nocompatible +set tabstop=4 +set shiftwidth=4 +set noexpandtab +set mouse+=a +syntax on +colorscheme slate |
