-
-
Notifications
You must be signed in to change notification settings - Fork 253
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(motion): add marks.nvim improve nvim mark function (#445)
* feat(editing-support): add marks.nvim improve nvim mark function * Update init.lua
- Loading branch information
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# marks.nvim | ||
|
||
A better user experience for interacting with and manipulating Vim marks. Requires Neovim 0.5+. | ||
|
||
**Repository:** <https://github.com/chentoast/marks.nvim> | ||
|
||
## Features | ||
|
||
- view marks in the sign column | ||
- quickly add, delete, and toggle marks | ||
- cycle between marks | ||
- preview marks in floating windows | ||
- extract marks to quickfix/location list | ||
- set bookmarks with sign/virtual text annotations for quick navigation across buffers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
return { | ||
"chentoast/marks.nvim", | ||
event = "User AstroFile", | ||
opts = { | ||
excluded_filetypes = { | ||
"qf", | ||
"NvimTree", | ||
"toggleterm", | ||
"TelescopePrompt", | ||
"alpha", | ||
"netrw", | ||
"neo-tree", | ||
}, | ||
}, | ||
} |