aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vim/autoload/xdg.vim2
-rw-r--r--vim/vimrc8
2 files changed, 5 insertions, 5 deletions
diff --git a/vim/autoload/xdg.vim b/vim/autoload/xdg.vim
index 3dff52a5..dd9a129b 100644
--- a/vim/autoload/xdg.vim
+++ b/vim/autoload/xdg.vim
@@ -4,7 +4,7 @@ let s:defaults = {
\ 'XDG_CONFIG_HOME': '~/.config',
\ 'XDG_CONFIG_DIRS': '/etc/xdg',
\ 'XDG_DATA_HOME': '~/.local/share',
- \ 'XDG_DATA_DIRS': '/usr/local/share/:/usr/share/',
+ \ 'XDG_DATA_DIRS': '/usr/local/share:/usr/share',
\}
let s:subdir = 'vim'
diff --git a/vim/vimrc b/vim/vimrc
index 33ac602e..40e744c1 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -2,7 +2,7 @@
" Tom Ryder (tejr)’s Literate Vimrc
" ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
"
-" Last updated: Sun, 03 May 2020 03:44:03 UTC
+" Last updated: Sun, 03 May 2020 03:46:29 UTC
"
" │ And I was lifted up in heart, and thought
" │ Of all my late-shown prowess in the lists,
@@ -924,9 +924,9 @@ endif
" almost always stands out too much for my liking.
"
" You’d think the pattern here could be used to match the color scheme name,
-" and it can be...after patch v7.4.108, when Christian Brabandt fixed it.
-" Until that version, it matched against the current buffer name, so we’re
-" forced to have an explicit test in the command instead.
+" and it can be—after patch v7.4.108, when Christian Brabandt fixed it. Until
+" that version, it matched against the current buffer name, so we’re forced to
+" have an explicit test in the command instead.
"
" <https://github.com/vim/vim/releases/tag/v7.4.108>
"