https://github.com/wsdjeg/ctrlg.nvim
More beautiful ctrl-g output
https://github.com/wsdjeg/ctrlg.nvim
neovim-plugin
Last synced: 25 days ago
JSON representation
More beautiful ctrl-g output
- Host: GitHub
- URL: https://github.com/wsdjeg/ctrlg.nvim
- Owner: wsdjeg
- Created: 2025-03-04T14:00:37.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2025-03-04T14:20:06.000Z (3 months ago)
- Last Synced: 2025-03-04T15:27:23.395Z (2 months ago)
- Topics: neovim-plugin
- Language: Lua
- Homepage:
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ctrlg.nvim
display project, current working directory and file path.

## Installation
Using [nvim-plug](https://github.com/wsdjeg/nvim-plug)
```lua
require('plug').add({
{
'wsdjeg/ctrlg.nvim',
config = function()
vim.keymap.set('n', '', 'lua require("ctrlg").display()', { silent = true })
end,
},
})
```