https://github.com/ck-zhang/obfuscate.nvim
visually obfuscates your top secret code while you are coding in public
https://github.com/ck-zhang/obfuscate.nvim
neovim neovim-plugin
Last synced: about 1 month ago
JSON representation
visually obfuscates your top secret code while you are coding in public
- Host: GitHub
- URL: https://github.com/ck-zhang/obfuscate.nvim
- Owner: ck-zhang
- License: mit
- Created: 2024-12-24T14:25:57.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-01-23T09:47:28.000Z (4 months ago)
- Last Synced: 2025-03-25T22:36:35.685Z (about 2 months ago)
- Topics: neovim, neovim-plugin
- Language: Lua
- Homepage:
- Size: 3.91 KB
- Stars: 19
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# obfuscate.nvim

**obfuscate.nvim** visually obfuscates your top secret code while you are programming in public
## Features
- Partially obfuscate alphabetic characters, leaving symbols and numbers
- Purely visual obfuscation that does not alter the actual content
- Quick real-time toggle## Installing (lazy.nvim)
```lua
{
"https://github.com/ck-zhang/obfuscate.nvim",
}
```## Usage
To toggle on and off obfuscation, use `lua require('obfuscate').toggle()`
Or bind it for easier accessExample keybinding:
```lua
vim.keymap.set(
"n",
"",
require('obfuscate').toggle,
{ desc = "Toggle Obfuscate", noremap = true, silent = true }
)
```## TODO
- [ ] Implement user command to toggle obfuscation