https://github.com/bgcicca/dashdaddy.vim
An awesome hackeable dashboard plugin for vim
https://github.com/bgcicca/dashdaddy.vim
Last synced: 8 months ago
JSON representation
An awesome hackeable dashboard plugin for vim
- Host: GitHub
- URL: https://github.com/bgcicca/dashdaddy.vim
- Owner: bgcicca
- License: gpl-3.0
- Created: 2024-12-02T01:48:36.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-12-02T02:39:53.000Z (10 months ago)
- Last Synced: 2025-02-14T02:11:38.833Z (8 months ago)
- Language: Vim Script
- Size: 30.3 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dashdaddy.vim
An awesome hackeable dashboard plugin for vim. Welcome to the new generation of configurations for Vim, style your configuration much more, being able to add a customizable dashboard in a simple way!

### Install
To install via vim-plug, we can do it this way, add the following statement to your configuration file:
```vimscript
Plug 'BrunoCiccarino/dashdaddy.vim'
```
Then press esc to exit insertion mode and run :PlugInstallTo install via vundle it's very similar, you just need to add the following instructions to your configuration file:
```vimscript
Plugin 'BrunoCiccarino/dashdaddy.vim'
```
Then you repeat the process by pressing esc and typing :PluginInstall### Example
```vimscript
let g:dashboard_config = {
\ 'title': 'Welcome to My Vim Dashboard!',
\ 'ascii_art': [
\ '______ _ ______ _ _ ',
\ '| _ \ | | | _ \ | | | | ',
\ '| | | |__ _ ___| |__ | | | |__ _ __| | __| |_ _ ',
\ '| | | / _` / __| \'_ \| | | / _` |/ _` |/ _` | | | |',
\ '| |/ / (_| \__ \ | | | |/ / (_| | (_| | (_| | |_| |',
\ '|___/ \__,_|___/_| |_|___/ \__,_|\__,_|\__,_|\__, |',
\ ' __/ |',
\ ' |___/ '
\ ],
\ 'shortcuts': [
\ {'label': 'Edit Config', 'command': ':e ~/.vimrc'},
\ {'label': 'Quit Vim', 'command': ':qa!'}
\ ]
\ }" After configuring `g:dashboard_config`, the dashboard will automatically load
" when Vim starts with no arguments.
"
" To open the dashboard manually, use `:Dashboard`.
```