aboutsummaryrefslogtreecommitdiff
path: root/.vimrc
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2020-08-05 18:30:17 -0400
committertdro <tdro@users.noreply.github.com>2020-08-05 18:30:17 -0400
commit3d0401372cf59e7ad8c7627f06d7410349f7635c (patch)
treeaa6674f6fa85c1d92e3b102cf9e0eec4d8acbe48 /.vimrc
parent6f124ff83305a48904bfe15a05d8050502cf4f37 (diff)
downloaddotfiles-3d0401372cf59e7ad8c7627f06d7410349f7635c.tar.gz
dotfiles-3d0401372cf59e7ad8c7627f06d7410349f7635c.tar.bz2
dotfiles-3d0401372cf59e7ad8c7627f06d7410349f7635c.zip
.vimrc: Add thesaurus lookup
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc1
1 files changed, 1 insertions, 0 deletions
diff --git a/.vimrc b/.vimrc
index 5f1bf17..11414ae 100644
--- a/.vimrc
+++ b/.vimrc
@@ -156,6 +156,7 @@ nmap <Leader>ma :Marks<cr>
" Search documentation under cursor
nmap <Leader>dm :execute ':term fman ' . expand('<cword>')<cr>
nmap <Leader>di :execute ':term fdoc ' . expand('<cword>')<cr>
+nmap <Leader>dt :execute ':term dict -h localhost -d dict-moby-thesaurus-latest ' . expand('<cword>')<cr>
" Load and save sessions
nmap <Leader>sl :source ~/.vim/sessions/session.vim \| :source ~/.vimrc<cr>