about summary refs log tree commit diff stats
path: root/home-manager/soispha/config/neovim/nixvim/default.nix
blob: a96bc4765d2e1458de76a71f7c3080611fac6822 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{...}: {
  imports = [
    ./autocmds
    ./clipboard
    ./mappings
    ./options
    ./plugins
  ];
  programs.nixvim = {
    enable = true;

    # source: https://www.patorjk.com/software/taag/#p=display&f=ANSI%20Shadow&t=Neovim
    extraConfigLuaPre = ''
      ---------------------------------------------------------------------------
      --
      --     ███╗   ██╗███████╗ ██████╗ ██╗   ██╗██╗███╗   ███╗
      --     ████╗  ██║██╔════╝██╔═══██╗██║   ██║██║████╗ ████║
      --     ██╔██╗ ██║█████╗  ██║   ██║██║   ██║██║██╔████╔██║
      --     ██║╚██╗██║██╔══╝  ██║   ██║╚██╗ ██╔╝██║██║╚██╔╝██║
      --     ██║ ╚████║███████╗╚██████╔╝ ╚████╔╝ ██║██║ ╚═╝ ██║
      --     ╚═╝  ╚═══╝╚══════╝ ╚═════╝   ╚═══╝  ╚═╝╚═╝     ╚═╝
      --
      ---------------------------------------------------------------------------
    '';
  };
}