Skip to content

Commit

Permalink
feat(motion): add marks.nvim improve nvim mark function (#445)
Browse files Browse the repository at this point in the history
* feat(editing-support): add marks.nvim improve nvim mark function

* Update init.lua
  • Loading branch information
chaozwn authored Jul 16, 2023
1 parent 6bc9421 commit 1fddb01
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
14 changes: 14 additions & 0 deletions lua/astrocommunity/motion/marks-nvim/README.md
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
15 changes: 15 additions & 0 deletions lua/astrocommunity/motion/marks-nvim/init.lua
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",
},
},
}

0 comments on commit 1fddb01

Please sign in to comment.