mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
22 lines
408 B
Nix
22 lines
408 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
colorschemes.kanagawa.enable = true;
|
|
imports = [ ./modules ];
|
|
|
|
nixvimConfigs.fiesta.setups = {
|
|
snippets.enable = true;
|
|
completion.enable = true;
|
|
treesitter.enable = true;
|
|
debugging.enable = true;
|
|
desktop-utils.enable = true;
|
|
};
|
|
|
|
plugins.neorg.enable = true;
|
|
plugins.nvim-autopairs.enable = true;
|
|
|
|
extraPlugins = with pkgs; [
|
|
decker
|
|
];
|
|
}
|