An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

# ctrlg.nvim

display project, current working directory and file path.

![Image](https://github.com/user-attachments/assets/3050d13a-a9c4-432e-8cfd-c09f4ff1f5b2)

## 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,
},
})
```