From 88c093a5aaded6ca0e1cb358db22aa439e9886b1 Mon Sep 17 00:00:00 2001 From: Felix Zeller Date: Thu, 29 Feb 2024 01:48:31 -0500 Subject: [PATCH 1/3] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 25df64a2..5f1a48ef 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,6 @@ Adjust your neovim config as follows local lspconfig = require('lspconfig') local configs = require("lspconfig.configs") --- Markdown_Oxide is now added to nvim-lspconfig; make sure to update require("lspconfig").markdown_oxide.setup({ capabilities = capabilities -- ensure that capabilities.workspace.didChangeWatchedFiles.dynamicRegistration = true }) From f29cc8af8332e1bd513b4730810d1f438046d50c Mon Sep 17 00:00:00 2001 From: Felix Zeller Date: Thu, 29 Feb 2024 09:43:57 -0500 Subject: [PATCH 2/3] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 5f1a48ef..0286a115 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,12 @@ If you are using Arch Linux, you can install the latest Git version through the paru -S markdown-oxide-git ``` +### Cargo + +If you have cargo installed, you can easily install the binary for the LS by running the following command: + +`cargo install --git https://github.com/Feel-ix-343/markdown-oxide.git markdown-oxide` + ### Manual (for MacOS, Windows, and *other* linux distributions) Clone the repository and then run `cargo build --release`. From dd0a0e1475c71e95e4819fe3edbe63441aed8eac Mon Sep 17 00:00:00 2001 From: Felix Zeller Date: Thu, 29 Feb 2024 13:30:08 -0500 Subject: [PATCH 3/3] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0286a115..88fc9167 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,9 @@ paru -S markdown-oxide-git If you have cargo installed, you can easily install the binary for the LS by running the following command: -`cargo install --git https://github.com/Feel-ix-343/markdown-oxide.git markdown-oxide` +```sh +cargo install --git https://github.com/Feel-ix-343/markdown-oxide.git markdown-oxide +``` ### Manual (for MacOS, Windows, and *other* linux distributions)