add marks.nvim

This commit is contained in:
2026-05-14 10:34:26 -04:00
parent c94b2c205e
commit 5202ed9082
4 changed files with 16 additions and 1 deletions
+1 -1
View File
@@ -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:**
```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:
+9
View File
@@ -162,6 +162,15 @@
(let [roslyn (require :roslyn)]
(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
{repo "lewis6991/gitsigns.nvim"
:event ["BufReadPre" "BufNewFile"]
+1
View File
@@ -5,6 +5,7 @@
"gitsigns.nvim": { "branch": "main", "commit": "dd3f588bacbeb041be6facf1742e42097f62165d" },
"hop.nvim": { "branch": "master", "commit": "08ddca799089ab96a6d1763db0b8adc5320bf050" },
"lazy.nvim": { "branch": "main", "commit": "306a05526ada86a7b30af95c5cc81ffba93fef97" },
"marks.nvim": { "branch": "master", "commit": "f353e8c08c50f39e99a9ed474172df7eddd89b72" },
"mason-tool-installer.nvim": { "branch": "main", "commit": "443f1ef8b5e6bf47045cb2217b6f748a223cf7dc" },
"mason.nvim": { "branch": "main", "commit": "e54f5bf5f12c560da31c17eee5b3e1bd369f3ff9" },
"nfnl": { "branch": "main", "commit": "ac0177c5549df7abba7a19554c18a7765386c894" },
Executable
+5
View File
@@ -0,0 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")/.."
nvim --headless -c "NfnlCompileAllFiles" -c "qa"