From a6bfd67e008f48787725ce0893bb283a1a461a09 Mon Sep 17 00:00:00 2001 From: xfnw Date: Sat, 16 Oct 2021 20:06:32 -0400 Subject: [PATCH] add mit license template to vim --- .profile | 2 +- .vim/templates/mit | 21 +++++++++++++++++++++ .vim/vimrc | 1 + 3 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 .vim/templates/mit diff --git a/.profile b/.profile index ea54480..b0e71f6 100755 --- a/.profile +++ b/.profile @@ -34,7 +34,7 @@ export LC_ALL="en_US.UTF-8" export CDPATH=:~ export EDITOR=vim -export BROWSER=qutebrowser +export BROWSER=firefox # start the ssh agent [[ -z $SSH_AGENT_PID ]] && eval $(ssh-agent) diff --git a/.vim/templates/mit b/.vim/templates/mit new file mode 100644 index 0000000..1637db2 --- /dev/null +++ b/.vim/templates/mit @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/.vim/vimrc b/.vim/vimrc index 9fb6cff..eca4da5 100644 --- a/.vim/vimrc +++ b/.vim/vimrc @@ -11,6 +11,7 @@ command Tmd :r ~/.vim/templates/md.html command Tman :r ~/.vim/templates/man.1 command Tmh :r ~/.vim/templates/man.html command Ttex :r ~/.vim/templates/general.tex +command Tmit :r ~/.vim/templates/mit " run groff+refer on file :command Groff w|!sh -c 'p="%"; refer -PS -e -p ~/Documents/bib ${p::-4}.mom | groff -mom -Tpdf > ${p::-4}.pdf'