diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-10-11 21:52:52 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-10-11 21:52:52 +0200 |
| commit | 307486d2a0983d5f2d3f866a0acad43dc8323166 (patch) | |
| tree | b61cfc6fd4a6e3e355e557a07ba6ebbbdea97389 /common/home/programs/nixvim/plugins/dashboard.nix | |
| parent | cd2c10c424a3c0f041c8df63310fedba352f0108 (diff) | |
try more minimal nvim config
Diffstat (limited to 'common/home/programs/nixvim/plugins/dashboard.nix')
| -rw-r--r-- | common/home/programs/nixvim/plugins/dashboard.nix | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/common/home/programs/nixvim/plugins/dashboard.nix b/common/home/programs/nixvim/plugins/dashboard.nix deleted file mode 100644 index 68308da..0000000 --- a/common/home/programs/nixvim/plugins/dashboard.nix +++ /dev/null @@ -1,68 +0,0 @@ -{ ... }: -{ - enable = true; - settings = { - change_to_vcs_root = true; - config = { - footer = [ "" ]; - - header = [ - "███╗ ██╗ ███████╗ ██████╗ ██╗ ██╗ ██╗ ███╗ ███╗" - "████╗ ██║ ██╔════╝██╔═══██╗ ██║ ██║ ██║ ████╗ ████║" - "██╔██╗ ██║ █████╗ ██║ ██║ ██║ ██║ ██║ ██╔████╔██║" - "██║╚██╗██║ ██╔══╝ ██║ ██║ ╚██╗ ██╔╝ ██║ ██║╚██╔╝██║" - "██║ ╚████║ ███████╗╚██████╔╝ ╚████╔╝ ██║ ██║ ╚═╝ ██║" - "╚═╝ ╚═══╝ ╚══════╝ ╚═════╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝" - ]; - - mru = { - limit = 10; - }; - - project = { - enable = true; - }; - - packages.enable = false; - - shortcut = [ - { - action = { - __raw = '' - function(path) - vim.cmd('Telescope find_files') - end - ''; - }; - desc = "Files"; - group = "Label"; - icon = " "; - icon_hl = "@variable"; - key = "f"; - } - { - action = { - __raw = '' - function() - vim.cmd('cd ~/global/system/config') - vim.cmd('Telescope find_files') - end - ''; - }; - icon = " "; - icon_hl = "@variable"; - desc = "System Config"; - group = "Number"; - key = "c"; - } - ]; - - hide = [ - "statusline" - "tabline" - "winbar" - ]; - }; - theme = "hyper"; - }; -} |