add marks.nvim
This commit is contained in:
@@ -13,7 +13,7 @@ Neovim config using Fennel (a Lisp that compiles to Lua) via nfnl.
|
|||||||
**After editing ANY `.fnl` file, you MUST compile it to Lua:**
|
**After editing ANY `.fnl` file, you MUST compile it to Lua:**
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
cd ~/.config/nvim && nvim --headless -c "NfnlCompileAllFiles" -c "qa"
|
~/.config/nvim/script/build
|
||||||
```
|
```
|
||||||
|
|
||||||
If compilation says "destination-exists", delete the target lua file first:
|
If compilation says "destination-exists", delete the target lua file first:
|
||||||
|
|||||||
@@ -162,6 +162,15 @@
|
|||||||
(let [roslyn (require :roslyn)]
|
(let [roslyn (require :roslyn)]
|
||||||
(roslyn.setup {})))}
|
(roslyn.setup {})))}
|
||||||
|
|
||||||
|
;; marks.nvim - Show mark letters in the sign column
|
||||||
|
{repo "chentoast/marks.nvim"
|
||||||
|
:event "VeryLazy"
|
||||||
|
:opts {:default_mappings true
|
||||||
|
:builtin_marks []
|
||||||
|
:cyclic true
|
||||||
|
:force_write_shada true
|
||||||
|
:sign_priority 10}}
|
||||||
|
|
||||||
;; gitsigns.nvim - Git diff signs in the sign column
|
;; gitsigns.nvim - Git diff signs in the sign column
|
||||||
{repo "lewis6991/gitsigns.nvim"
|
{repo "lewis6991/gitsigns.nvim"
|
||||||
:event ["BufReadPre" "BufNewFile"]
|
:event ["BufReadPre" "BufNewFile"]
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
"gitsigns.nvim": { "branch": "main", "commit": "dd3f588bacbeb041be6facf1742e42097f62165d" },
|
"gitsigns.nvim": { "branch": "main", "commit": "dd3f588bacbeb041be6facf1742e42097f62165d" },
|
||||||
"hop.nvim": { "branch": "master", "commit": "08ddca799089ab96a6d1763db0b8adc5320bf050" },
|
"hop.nvim": { "branch": "master", "commit": "08ddca799089ab96a6d1763db0b8adc5320bf050" },
|
||||||
"lazy.nvim": { "branch": "main", "commit": "306a05526ada86a7b30af95c5cc81ffba93fef97" },
|
"lazy.nvim": { "branch": "main", "commit": "306a05526ada86a7b30af95c5cc81ffba93fef97" },
|
||||||
|
"marks.nvim": { "branch": "master", "commit": "f353e8c08c50f39e99a9ed474172df7eddd89b72" },
|
||||||
"mason-tool-installer.nvim": { "branch": "main", "commit": "443f1ef8b5e6bf47045cb2217b6f748a223cf7dc" },
|
"mason-tool-installer.nvim": { "branch": "main", "commit": "443f1ef8b5e6bf47045cb2217b6f748a223cf7dc" },
|
||||||
"mason.nvim": { "branch": "main", "commit": "e54f5bf5f12c560da31c17eee5b3e1bd369f3ff9" },
|
"mason.nvim": { "branch": "main", "commit": "e54f5bf5f12c560da31c17eee5b3e1bd369f3ff9" },
|
||||||
"nfnl": { "branch": "main", "commit": "ac0177c5549df7abba7a19554c18a7765386c894" },
|
"nfnl": { "branch": "main", "commit": "ac0177c5549df7abba7a19554c18a7765386c894" },
|
||||||
|
|||||||
Executable
+5
@@ -0,0 +1,5 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
cd "$(dirname "$0")/.."
|
||||||
|
nvim --headless -c "NfnlCompileAllFiles" -c "qa"
|
||||||
Reference in New Issue
Block a user