Compare commits

..

5 Commits

Author SHA1 Message Date
72bb0a0c16 Update flake 2026-06-11 09:31:01 -04:00
4e7def8ba1 Remove coq 2026-05-06 09:29:37 -04:00
41a3a6114d Use new format of mkdnflow bindings 2026-04-23 12:33:06 -04:00
82614c27db Remove dashboard 2026-04-23 11:00:00 -04:00
69584f4eb9 Use this flake's pkgs for nixvim 2026-04-23 10:57:55 -04:00
4 changed files with 19 additions and 60 deletions

View File

@@ -20,7 +20,6 @@ Color Scheme: [Tokyo Night](https://github.com/folke/tokyonight.nvim)<br>
[neogit](https://github.com/NeogitOrg/neogit)<br>
[gitsigns](https://github.com/lewis6991/gitsigns.nvim)<br>
[tiny-inline-diagnostic](https://github.com/rachartier/tiny-inline-diagnostic.nvim)<br>
[coq_nvim](https://github.com/ms-jpq/coq_nvim)<br>
[nvim-autopairs](https://github.com/windwp/nvim-autopairs)<br>
[Comment](https://github.com/numToStr/Comment.nvim)<br>
[sleuth](https://github.com/tpope/vim-sleuth)<br>

View File

@@ -29,37 +29,6 @@
clipboard.providers.xclip.enable = true;
plugins = {
dashboard = {
enable = true;
settings = {
theme = "hyper";
config = {
header = [
" "
" "
" "
" "
" "
" "
""
];
shortcut = [
{
action = {
__raw = "function(path) vim.cmd('Telescope find_files') end";
};
desc = "Find Files";
key = "f";
icon = " ";
}
];
};
};
};
telescope = {
enable = true;
@@ -136,17 +105,6 @@
};
};
coq-nvim = {
enable = true;
installArtifacts = true;
luaConfig.post = ''
vim.g.coq_settings = {
keymap = { jump_to_mark = "" },
}
'';
};
nvim-autopairs.enable = true;
sleuth.enable = true;
@@ -166,16 +124,15 @@
};
};
mkdnflow = {
enable = true;
settings = {
mappings = {
MkdnEnter = {
key = "<CR>";
modes = [ "n" "v" "i" ];
};
MkdnEnter = [
[ "n" "v" "i" ]
"<CR>"
];
};
};
};

25
flake.lock generated
View File

@@ -8,11 +8,11 @@
]
},
"locked": {
"lastModified": 1769996383,
"narHash": "sha256-AnYjnFWgS49RlqX7LrC4uA+sCCDBj0Ry/WOJ5XWAsa0=",
"lastModified": 1778716662,
"narHash": "sha256-m1Yf0wZ8j1OHjTc2UwHwyQRSnNeSgLJOd7q5Y45hzi4=",
"owner": "hercules-ci",
"repo": "flake-parts",
"rev": "57928607ea566b5db3ad13af0e57e921e6b12381",
"rev": "f7c1a2d347e4c52d5fb8d10cb4d94b5884e546fb",
"type": "github"
},
"original": {
@@ -57,11 +57,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1773821835,
"narHash": "sha256-TJ3lSQtW0E2JrznGVm8hOQGVpXjJyXY2guAxku2O9A4=",
"lastModified": 1780749050,
"narHash": "sha256-3av0pIjlOWQ6rDbNOmpUSvbNnJkGORQKKjb4LtCZsIY=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b40629efe5d6ec48dd1efba650c797ddbd39ace0",
"rev": "a799d3e3886da994fa307f817a6bc705ae538eeb",
"type": "github"
},
"original": {
@@ -80,11 +80,11 @@
"systems": "systems_2"
},
"locked": {
"lastModified": 1772402258,
"narHash": "sha256-3DmCFOdmbkFML1/G9gj8Wb+rCCZFPOQtNoMCpqOF8SA=",
"lastModified": 1781034432,
"narHash": "sha256-+UuS36un3lXLtKsGCYQnOn51hDhB+dZ1SHoHXClnV/0=",
"owner": "nix-community",
"repo": "nixvim",
"rev": "21ae25e13b01d3b4cdc750b5f9e7bad68b150c10",
"rev": "e9fbbd56eab78751ba4c166c31a1667042528ced",
"type": "github"
},
"original": {
@@ -119,15 +119,16 @@
},
"systems_2": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"lastModified": 1774449309,
"narHash": "sha256-brhZ8DmuGtzkCYHJg4HEd602amKm89Y9ytsFZ5uWD1w=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"rev": "c29398b59d2048c4ab79345812849c9bd15e9150",
"type": "github"
},
"original": {
"owner": "nix-systems",
"ref": "future-26.11",
"repo": "default",
"type": "github"
}

View File

@@ -33,6 +33,7 @@
nvim = nixvim.legacyPackages.${system}.makeNixvimWithModule {
module = nixvimModule;
inherit pkgs;
extraSpecialArgs = {
inherit inputs;
light = false;
@@ -41,6 +42,7 @@
nvim-light = nixvim.legacyPackages.${system}.makeNixvimWithModule {
module = nixvimModule;
inherit pkgs;
extraSpecialArgs = {
inherit inputs;
light = true;