Added basic nvim config, replaced vim with nvim

This commit is contained in:
Philipp 2024-03-03 15:33:59 +01:00
parent 624d12439c
commit ea2e6747d9
Signed by: Philipp
GPG key ID: 9EBD8439AFBAB750
1972 changed files with 126578 additions and 0 deletions

View file

@ -0,0 +1,17 @@
## marktext
Plugin for MarkText, a previewer for Markdown files on Mac OS X
### Requirements
* [MarkText](https://github.com/marktext/marktext)
### Usage
* If `marktext` is called without an argument, open MarkText
* If `marktext` is passed a file, open it in MarkText
### Credits
* just copied from plugins/marked2, all credits to marked2 plugin author

View file

@ -0,0 +1,7 @@
#
# If marktext is called without an argument, open MarkText
# If marktext is passed a file, open it in MarkText
#
function marktext() {
open -a "MarkText.app" "$1"
}