This neovim plugin will help you easily create commented figlet banners to separate your code and configurations.
This plugin requires figlet to be installed.
RedHat like
dnf install figlet
Debian like
apt install figlet
Arch
pacman -S figlet
Vim Plug
- Add
Plug 'thazelart/figban.nvim'
to your vimrc file. - Reload your vimrc or restart
- Run
:PlugInstall
Dein.vim
- Add
call dein#add('thazelart/figban.nvim')
to your vimrc file. - Reload your vimrc or restart
- Run
:call dein#install()
Vundle
Vundle or similar
- Add
Plugin 'thazelart/figban.nvim'
to your vimrc file. - Reload your vimrc or restart
- Run
:BundleInstall
You can choose you figlet fontstyle
by adding this config in your vimrc
let g:figban_fontstyle='shadow'
Generate your banner
:Figban My banner
Golang
/** __ __ ____
* | \/ |_ _ | __ ) __ _ _ __ _ __ ___ _ __
* | |\/| | | | | | _ \ / _` | '_ \| '_ \ / _ \ '__|
* | | | | |_| | | |_) | (_| | | | | | | | __/ |
* |_| |_|\__, | |____/ \__,_|_| |_|_| |_|\___|_|
* |___/
**/
Python
""" __ __ ____
| \/ |_ _ | __ ) __ _ _ __ _ __ ___ _ __
| |\/| | | | | | _ \ / _` | '_ \| '_ \ / _ \ '__|
| | | | |_| | | |_) | (_| | | | | | | | __/ |
|_| |_|\__, | |____/ \__,_|_| |_|_| |_|\___|_|
|___/
"""
Bash
# __ __ ____
# | \/ |_ _ | __ ) __ _ _ __ _ __ ___ _ __
# | |\/| | | | | | _ \ / _` | '_ \| '_ \ / _ \ '__|
# | | | | |_| | | |_) | (_| | | | | | | | __/ |
# |_| |_|\__, | |____/ \__,_|_| |_|_| |_|\___|_|
# |___/
#
Lua
--[[ __ __ ____
-- | \/ |_ _ | __ ) __ _ _ __ _ __ ___ _ __
-- | |\/| | | | | | _ \ / _` | '_ \| '_ \ / _ \ '__|
-- | | | | |_| | | |_) | (_| | | | | | | | __/ |
-- |_| |_|\__, | |____/ \__,_|_| |_|_| |_|\___|_|
-- |___/
--]]