home · contact · privacy
Move vimrc do dotfiles_minimal (root may use vim too!).
authorChristian Heller <c.heller@plomlompom.de>
Sat, 12 Dec 2015 11:14:25 +0000 (12:14 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Sat, 12 Dec 2015 11:14:25 +0000 (12:14 +0100)
dotfiles_minimal/vimrc [new file with mode: 0644]
dotfiles_user_minimal/vimrc [deleted file]

diff --git a/dotfiles_minimal/vimrc b/dotfiles_minimal/vimrc
new file mode 100644 (file)
index 0000000..0103b0a
--- /dev/null
@@ -0,0 +1,27 @@
+" Activate syntax highlighting.
+syntax on
+filetype plugin on
+
+" Number lines.
+set number
+
+" Don't add unsolicited final newline.
+set binary
+
+" Indentation rules (tabs to 4 spaces).
+set expandtab
+set shiftwidth=4
+set softtabstop=4
+
+" Backups.
+set backup
+set backupdir=~/.vimbackups
+let myvar = strftime("%Y-%m-%d_%H-%M-%S")
+let myvar = "set backupext=_". myvar
+execute myvar
+
+" Keep syntax highlighting healthy.
+autocmd BufEnter * :syntax sync fromstart
+
+" Mark the 80-th column.
+set colorcolumn=80
diff --git a/dotfiles_user_minimal/vimrc b/dotfiles_user_minimal/vimrc
deleted file mode 100644 (file)
index 0103b0a..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-" Activate syntax highlighting.
-syntax on
-filetype plugin on
-
-" Number lines.
-set number
-
-" Don't add unsolicited final newline.
-set binary
-
-" Indentation rules (tabs to 4 spaces).
-set expandtab
-set shiftwidth=4
-set softtabstop=4
-
-" Backups.
-set backup
-set backupdir=~/.vimbackups
-let myvar = strftime("%Y-%m-%d_%H-%M-%S")
-let myvar = "set backupext=_". myvar
-execute myvar
-
-" Keep syntax highlighting healthy.
-autocmd BufEnter * :syntax sync fromstart
-
-" Mark the 80-th column.
-set colorcolumn=80