commit 9c6f43ca3f29c821aff2f0963915d5d603319cd0 parent 2e55c7b132b709456a9e6480fef62da7ee7a216f Author: Alex Balgavy <a.balgavy@gmail.com> Date: Thu, 4 Apr 2019 15:58:22 +0200 Updated init vimrc, added custom digraphs The symbols file contains custom-defined digraphs. Also, all definitions now use the CONF_DIR environment variable instead of hard-coding the ~/.dotfiles director. Former-commit-id: 2d86e540f7cc9bfe2a0ff2cd47cc4e869ad8ecde Diffstat:
M | vim/init.vimrc | | | 13 | +++++++------ |
A | vim/symbols.vimrc | | | 18 | ++++++++++++++++++ |
2 files changed, 25 insertions(+), 6 deletions(-)
diff --git a/vim/init.vimrc b/vim/init.vimrc @@ -1,6 +1,7 @@ -source $HOME/.dotfiles/vim/plugins.vimrc -source $HOME/.dotfiles/vim/general.vimrc -source $HOME/.dotfiles/vim/editor.vimrc -source $HOME/.dotfiles/vim/commands.vimrc -source $HOME/.dotfiles/vim/map.vimrc -source $HOME/.dotfiles/vim/autocmd.vimrc +source $CONF_DIR/vim/plugins.vimrc +source $CONF_DIR/vim/general.vimrc +source $CONF_DIR/vim/editor.vimrc +source $CONF_DIR/vim/commands.vimrc +source $CONF_DIR/vim/map.vimrc +source $CONF_DIR/vim/autocmd.vimrc +source $CONF_DIR/vim/symbols.vimrc diff --git a/vim/symbols.vimrc b/vim/symbols.vimrc @@ -0,0 +1,18 @@ +execute "digraphs ks " . 0x2096 +execute "digraphs as " . 0x2090 +execute "digraphs es " . 0x2091 +execute "digraphs hs " . 0x2095 +execute "digraphs is " . 0x1D62 +execute "digraphs ks " . 0x2096 +execute "digraphs ls " . 0x2097 +execute "digraphs ms " . 0x2098 +execute "digraphs ns " . 0x2099 +execute "digraphs os " . 0x2092 +execute "digraphs ps " . 0x209A +execute "digraphs rs " . 0x1D63 +execute "digraphs ss " . 0x209B +execute "digraphs ts " . 0x209C +execute "digraphs us " . 0x1D64 +execute "digraphs vs " . 0x1D65 +execute "digraphs xs " . 0x2093 +execute "digraphs \\|- " . 0x22A2