2023-02-01 19:11:37 +00:00
|
|
|
{
|
2023-02-01 20:59:35 +00:00
|
|
|
description = "A neovim flake with a modular configuration";
|
|
|
|
outputs = {
|
2023-02-07 12:03:21 +00:00
|
|
|
flake-parts,
|
2023-03-31 21:57:25 +00:00
|
|
|
self,
|
2023-02-01 20:59:35 +00:00
|
|
|
...
|
2024-07-11 22:49:44 +00:00
|
|
|
} @ inputs: let
|
|
|
|
# call the extedended library with `inputs`
|
|
|
|
# inputs is used to get the original standard library, and to pass inputs to the plugin autodiscovery function
|
|
|
|
lib = import ./lib/stdlib-extended.nix inputs;
|
|
|
|
in
|
|
|
|
flake-parts.lib.mkFlake {
|
|
|
|
inherit inputs;
|
|
|
|
specialArgs = {inherit lib;};
|
|
|
|
} {
|
2024-09-28 20:32:25 +00:00
|
|
|
# Allow users to bring their own systems.
|
|
|
|
# «https://github.com/nix-systems/nix-systems»
|
2023-09-28 09:07:36 +00:00
|
|
|
systems = import inputs.systems;
|
2023-02-10 17:40:13 +00:00
|
|
|
imports = [
|
|
|
|
./flake/apps.nix
|
|
|
|
./flake/legacyPackages.nix
|
2023-02-10 17:45:23 +00:00
|
|
|
./flake/overlays.nix
|
2023-02-10 17:40:13 +00:00
|
|
|
./flake/packages.nix
|
|
|
|
];
|
|
|
|
|
2023-02-07 12:03:21 +00:00
|
|
|
flake = {
|
|
|
|
lib = {
|
2024-07-20 08:22:13 +00:00
|
|
|
inherit (lib) nvim;
|
|
|
|
inherit (lib.nvim) neovimConfiguration;
|
2023-02-06 01:14:01 +00:00
|
|
|
};
|
2023-02-06 02:26:52 +00:00
|
|
|
|
2023-04-02 16:10:24 +00:00
|
|
|
homeManagerModules = {
|
2024-04-27 12:51:22 +00:00
|
|
|
neovim-flake =
|
2024-07-11 22:49:44 +00:00
|
|
|
lib.warn ''
|
2024-04-27 12:51:22 +00:00
|
|
|
homeManagerModules.neovim-flake has been deprecated.
|
2024-06-10 07:33:45 +00:00
|
|
|
Plese use the homeManagerModules.nvf instead
|
2024-04-27 12:51:22 +00:00
|
|
|
''
|
|
|
|
self.homeManagerModules.nvf;
|
|
|
|
|
2024-07-11 22:49:44 +00:00
|
|
|
nvf = import ./flake/modules/home-manager.nix self.packages lib;
|
2023-04-02 16:10:24 +00:00
|
|
|
|
2024-04-27 12:51:22 +00:00
|
|
|
default = self.homeManagerModules.nvf;
|
2023-03-29 13:20:43 +00:00
|
|
|
};
|
2024-04-14 13:51:20 +00:00
|
|
|
|
|
|
|
nixosModules = {
|
2024-04-27 12:51:22 +00:00
|
|
|
neovim-flake =
|
2024-07-11 22:49:44 +00:00
|
|
|
lib.warn ''
|
2024-04-27 12:51:22 +00:00
|
|
|
nixosModules.neovim-flake has been deprecated.
|
|
|
|
Please use the nixosModules.nvf instead
|
|
|
|
''
|
2024-05-16 16:08:21 +00:00
|
|
|
self.nixosModules.nvf;
|
2024-04-27 12:51:22 +00:00
|
|
|
|
2024-07-11 22:49:44 +00:00
|
|
|
nvf = import ./flake/modules/nixos.nix self.packages lib;
|
2024-04-14 13:51:20 +00:00
|
|
|
|
2024-04-27 12:51:22 +00:00
|
|
|
default = self.nixosModules.nvf;
|
2024-04-14 13:51:20 +00:00
|
|
|
};
|
2023-02-01 20:59:35 +00:00
|
|
|
};
|
|
|
|
|
2023-02-07 12:03:21 +00:00
|
|
|
perSystem = {
|
2023-11-07 11:27:18 +00:00
|
|
|
self',
|
2023-02-10 17:40:13 +00:00
|
|
|
config,
|
|
|
|
pkgs,
|
2023-02-07 12:03:21 +00:00
|
|
|
...
|
|
|
|
}: {
|
2023-11-07 11:27:18 +00:00
|
|
|
devShells = {
|
|
|
|
default = self'.devShells.lsp;
|
2024-07-08 21:57:58 +00:00
|
|
|
nvim-nix = pkgs.mkShell {packages = [config.packages.nix];};
|
2023-11-07 11:27:18 +00:00
|
|
|
lsp = pkgs.mkShell {
|
2024-07-08 21:57:58 +00:00
|
|
|
packages = with pkgs; [nil statix deadnix alejandra];
|
2023-11-07 11:27:18 +00:00
|
|
|
};
|
|
|
|
};
|
2024-09-28 20:32:25 +00:00
|
|
|
|
|
|
|
# Provide the default formatter. `nix fmt` in project root
|
|
|
|
# will format available files with the correct formatter.
|
|
|
|
# P.S: Please do not format with nixfmt! It messes with many
|
|
|
|
# syntax elements and results in unreadable code.
|
|
|
|
formatter = pkgs.alejandra;
|
|
|
|
|
|
|
|
# Check if codebase is properly formatted.
|
|
|
|
# This can be initiated with `nix build .#checks.<system>.nix-fmt`
|
|
|
|
# or with `nix flake check`
|
|
|
|
checks = {
|
|
|
|
nix-fmt = pkgs.runCommand "nix-fmt-check" {nativeBuildInputs = [pkgs.alejandra];} ''
|
|
|
|
alejandra --check ${self} < /dev/null | tee $out
|
|
|
|
'';
|
|
|
|
};
|
2023-02-07 12:03:21 +00:00
|
|
|
};
|
|
|
|
};
|
2023-02-06 18:57:52 +00:00
|
|
|
|
|
|
|
# Flake inputs
|
2023-02-01 19:11:37 +00:00
|
|
|
inputs = {
|
2024-05-06 19:30:06 +00:00
|
|
|
## Basic Inputs
|
2024-06-22 23:28:54 +00:00
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
2023-02-07 12:03:21 +00:00
|
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
2023-02-15 08:46:29 +00:00
|
|
|
flake-utils.url = "github:numtide/flake-utils";
|
2023-09-28 09:07:36 +00:00
|
|
|
systems.url = "github:nix-systems/default";
|
2023-02-03 22:45:31 +00:00
|
|
|
|
2024-07-13 15:05:21 +00:00
|
|
|
# Alternate neovim-wrapper
|
2024-07-14 03:47:21 +00:00
|
|
|
mnw.url = "github:Gerg-L/mnw";
|
2024-07-13 15:05:21 +00:00
|
|
|
|
2023-02-01 19:11:37 +00:00
|
|
|
# For generating documentation website
|
|
|
|
nmd = {
|
2023-12-09 19:03:58 +00:00
|
|
|
url = "sourcehut:~rycee/nmd";
|
2023-02-01 19:11:37 +00:00
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-09-24 03:05:47 +00:00
|
|
|
# Language servers (use master instead of nixpkgs)
|
2024-04-08 00:28:49 +00:00
|
|
|
rnix-lsp.url = "github:nix-community/rnix-lsp";
|
|
|
|
nil = {
|
|
|
|
url = "github:oxalica/nil";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
inputs.flake-utils.follows = "flake-utils";
|
|
|
|
};
|
|
|
|
|
2024-05-06 19:30:06 +00:00
|
|
|
## Plugins
|
2024-09-30 19:55:37 +00:00
|
|
|
# Lazy loading
|
|
|
|
plugin-lz-n = {
|
|
|
|
url = "github:nvim-neorocks/lz.n";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
plugin-lzn-auto-require = {
|
|
|
|
url = "github:horriblename/lzn-auto-require/require-rewrite";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-10-22 11:00:48 +00:00
|
|
|
plugin-rtp-nvim = {
|
|
|
|
url = "github:nvim-neorocks/rtp.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2023-02-01 19:11:37 +00:00
|
|
|
# LSP plugins
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-nvim-lspconfig = {
|
2023-02-01 19:11:37 +00:00
|
|
|
url = "github:neovim/nvim-lspconfig";
|
|
|
|
flake = false;
|
|
|
|
};
|
2023-04-15 09:43:39 +00:00
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-lspsaga = {
|
2023-02-01 19:11:37 +00:00
|
|
|
url = "github:tami5/lspsaga.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
2023-04-15 09:43:39 +00:00
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-lspkind = {
|
2023-02-01 19:11:37 +00:00
|
|
|
url = "github:onsails/lspkind-nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
2023-04-15 09:43:39 +00:00
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-trouble = {
|
2023-02-01 19:11:37 +00:00
|
|
|
url = "github:folke/trouble.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
2023-04-15 09:43:39 +00:00
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-nvim-treesitter-context = {
|
2023-04-17 23:10:40 +00:00
|
|
|
url = "github:nvim-treesitter/nvim-treesitter-context";
|
2023-02-01 19:11:37 +00:00
|
|
|
flake = false;
|
|
|
|
};
|
2023-04-15 09:43:39 +00:00
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-nvim-lightbulb = {
|
2023-02-01 19:11:37 +00:00
|
|
|
url = "github:kosayoda/nvim-lightbulb";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-09-20 15:51:11 +00:00
|
|
|
plugin-fastaction-nvim = {
|
|
|
|
url = "github:Chaitanyabsprip/fastaction.nvim";
|
2023-02-01 19:11:37 +00:00
|
|
|
flake = false;
|
|
|
|
};
|
2023-04-15 09:43:39 +00:00
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-lsp-signature = {
|
2023-02-01 19:11:37 +00:00
|
|
|
url = "github:ray-x/lsp_signature.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
2023-04-15 09:43:39 +00:00
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-lsp-lines = {
|
2023-07-30 16:54:43 +00:00
|
|
|
url = "sourcehut:~whynothugo/lsp_lines.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-none-ls = {
|
2024-03-09 02:32:01 +00:00
|
|
|
# https://github.com/nvimtools/none-ls.nvim/issues/58
|
|
|
|
url = "github:nvimtools/none-ls.nvim/bb680d752cec37949faca7a1f509e2fe67ab418a";
|
2023-02-01 19:11:37 +00:00
|
|
|
flake = false;
|
|
|
|
};
|
2023-04-15 09:43:39 +00:00
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-nvim-docs-view = {
|
2023-10-26 12:03:58 +00:00
|
|
|
url = "github:amrbashir/nvim-docs-view";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-09-28 20:21:27 +00:00
|
|
|
plugin-otter-nvim = {
|
|
|
|
url = "github:jmbuhr/otter.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-09-24 03:05:47 +00:00
|
|
|
# Language support
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-sqls-nvim = {
|
2023-02-01 19:11:37 +00:00
|
|
|
url = "github:nanotee/sqls.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
2023-04-15 09:43:39 +00:00
|
|
|
|
2024-07-18 09:48:28 +00:00
|
|
|
plugin-rustaceanvim = {
|
|
|
|
url = "github:mrcjkb/rustaceanvim";
|
2023-02-01 19:11:37 +00:00
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-flutter-tools = {
|
2023-04-02 17:56:57 +00:00
|
|
|
url = "github:akinsho/flutter-tools.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-neodev-nvim = {
|
2023-09-23 13:36:26 +00:00
|
|
|
url = "github:folke/neodev.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-05-06 21:52:33 +00:00
|
|
|
plugin-elixir-tools = {
|
|
|
|
url = "github:elixir-tools/elixir-tools.nvim";
|
2024-02-17 00:19:38 +00:00
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-06-24 13:55:45 +00:00
|
|
|
plugin-ts-error-translator = {
|
|
|
|
url = "github:dmmulroy/ts-error-translator.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-10-12 03:43:33 +00:00
|
|
|
plugin-nvim-metals = {
|
|
|
|
url = "github:scalameta/nvim-metals";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2023-02-01 19:11:37 +00:00
|
|
|
# Copying/Registers
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-registers = {
|
2023-02-01 19:11:37 +00:00
|
|
|
url = "github:tversteeg/registers.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
2023-07-19 19:49:06 +00:00
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-nvim-neoclip = {
|
2023-02-01 19:11:37 +00:00
|
|
|
url = "github:AckslD/nvim-neoclip.lua";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
# Telescope
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-telescope = {
|
2023-02-01 19:11:37 +00:00
|
|
|
url = "github:nvim-telescope/telescope.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2023-05-04 15:41:11 +00:00
|
|
|
# Debuggers
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-nvim-dap = {
|
2023-05-04 15:41:11 +00:00
|
|
|
url = "github:mfussenegger/nvim-dap";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-nvim-dap-ui = {
|
2023-05-04 15:41:11 +00:00
|
|
|
url = "github:rcarriga/nvim-dap-ui";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-07-03 18:42:26 +00:00
|
|
|
plugin-nvim-dap-go = {
|
|
|
|
url = "github:leoluz/nvim-dap-go";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2023-02-01 19:11:37 +00:00
|
|
|
# Filetrees
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-nvim-tree-lua = {
|
2023-02-03 07:36:08 +00:00
|
|
|
url = "github:nvim-tree/nvim-tree.lua";
|
2023-02-01 19:11:37 +00:00
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-07-14 18:30:12 +00:00
|
|
|
plugin-neo-tree-nvim = {
|
|
|
|
url = "github:nvim-neo-tree/neo-tree.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2023-02-01 19:11:37 +00:00
|
|
|
# Tablines
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-nvim-bufferline-lua = {
|
2023-07-22 20:05:08 +00:00
|
|
|
url = "github:akinsho/nvim-bufferline.lua";
|
2023-02-01 19:11:37 +00:00
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
# Statuslines
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-lualine = {
|
2023-02-01 19:11:37 +00:00
|
|
|
url = "github:hoob3rt/lualine.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-nvim-cmp = {
|
2023-07-30 15:38:29 +00:00
|
|
|
url = "github:hrsh7th/nvim-cmp";
|
2023-02-01 19:11:37 +00:00
|
|
|
flake = false;
|
|
|
|
};
|
2024-04-08 00:28:49 +00:00
|
|
|
|
|
|
|
plugin-cmp-buffer = {
|
2023-02-01 19:11:37 +00:00
|
|
|
url = "github:hrsh7th/cmp-buffer";
|
|
|
|
flake = false;
|
|
|
|
};
|
2024-04-08 00:28:49 +00:00
|
|
|
|
|
|
|
plugin-cmp-nvim-lsp = {
|
2023-02-01 19:11:37 +00:00
|
|
|
url = "github:hrsh7th/cmp-nvim-lsp";
|
|
|
|
flake = false;
|
|
|
|
};
|
2024-04-08 00:28:49 +00:00
|
|
|
|
|
|
|
plugin-cmp-path = {
|
2023-02-01 19:11:37 +00:00
|
|
|
url = "github:hrsh7th/cmp-path";
|
|
|
|
flake = false;
|
|
|
|
};
|
2024-04-08 00:28:49 +00:00
|
|
|
|
|
|
|
plugin-cmp-treesitter = {
|
2023-02-01 19:11:37 +00:00
|
|
|
url = "github:ray-x/cmp-treesitter";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-10-09 17:50:34 +00:00
|
|
|
plugin-cmp-luasnip = {
|
|
|
|
url = "github:saadparwaiz1/cmp_luasnip";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2023-02-01 19:11:37 +00:00
|
|
|
# snippets
|
2024-10-09 17:50:34 +00:00
|
|
|
plugin-luasnip = {
|
|
|
|
url = "github:L3MON4D3/LuaSnip";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
plugin-friendly-snippets = {
|
|
|
|
url = "github:rafamadriz/friendly-snippets";
|
2023-02-01 19:11:37 +00:00
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2023-02-05 20:57:19 +00:00
|
|
|
# Presence
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-neocord = {
|
2024-01-05 16:24:02 +00:00
|
|
|
url = "github:IogaMaster/neocord";
|
|
|
|
flake = false; # uses flake-utils, avoid the flake
|
2023-02-05 20:57:19 +00:00
|
|
|
};
|
|
|
|
|
2023-02-01 19:11:37 +00:00
|
|
|
# Autopairs
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-nvim-autopairs = {
|
2023-02-01 19:11:37 +00:00
|
|
|
url = "github:windwp/nvim-autopairs";
|
|
|
|
flake = false;
|
|
|
|
};
|
2024-04-08 00:28:49 +00:00
|
|
|
|
|
|
|
plugin-nvim-ts-autotag = {
|
2023-02-01 19:11:37 +00:00
|
|
|
url = "github:windwp/nvim-ts-autotag";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
# Commenting
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-comment-nvim = {
|
2023-02-16 20:32:46 +00:00
|
|
|
url = "github:numToStr/Comment.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-todo-comments = {
|
2023-02-01 19:11:37 +00:00
|
|
|
url = "github:folke/todo-comments.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
# Buffer tools
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-bufdelete-nvim = {
|
2023-02-01 19:11:37 +00:00
|
|
|
url = "github:famiu/bufdelete.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2023-02-03 07:36:08 +00:00
|
|
|
# Dashboard Utilities
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-dashboard-nvim = {
|
2023-02-03 07:36:08 +00:00
|
|
|
url = "github:glepnir/dashboard-nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-alpha-nvim = {
|
2023-02-03 07:36:08 +00:00
|
|
|
url = "github:goolord/alpha-nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-vim-startify = {
|
2023-02-06 05:14:13 +00:00
|
|
|
url = "github:mhinz/vim-startify";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2023-02-01 19:11:37 +00:00
|
|
|
# Themes
|
2024-10-05 13:47:33 +00:00
|
|
|
plugin-base16 = {
|
|
|
|
url = "github:rrethy/base16-nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-tokyonight = {
|
2023-02-01 19:11:37 +00:00
|
|
|
url = "github:folke/tokyonight.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-onedark = {
|
2023-02-01 19:11:37 +00:00
|
|
|
url = "github:navarasu/onedark.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-catppuccin = {
|
2023-02-01 19:11:37 +00:00
|
|
|
url = "github:catppuccin/nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-dracula = {
|
2023-04-17 23:01:51 +00:00
|
|
|
url = "github:Mofiqul/dracula.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-oxocarbon = {
|
2024-04-23 09:28:46 +00:00
|
|
|
url = "github:nyoom-engineering/oxocarbon.nvim";
|
2023-10-20 22:19:29 +00:00
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-gruvbox = {
|
2024-01-17 20:08:36 +00:00
|
|
|
url = "github:ellisonleao/gruvbox.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-rose-pine = {
|
2024-02-13 20:41:13 +00:00
|
|
|
url = "github:rose-pine/neovim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2023-02-01 19:11:37 +00:00
|
|
|
# Rust crates
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-crates-nvim = {
|
2023-02-01 19:11:37 +00:00
|
|
|
url = "github:Saecki/crates.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2023-04-07 17:31:43 +00:00
|
|
|
# Project Management
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-project-nvim = {
|
2023-04-07 17:31:43 +00:00
|
|
|
url = "github:ahmedkhalf/project.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2023-02-01 19:11:37 +00:00
|
|
|
# Visuals
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-nvim-cursorline = {
|
2023-02-01 19:11:37 +00:00
|
|
|
url = "github:yamatsum/nvim-cursorline";
|
|
|
|
flake = false;
|
|
|
|
};
|
2023-02-03 19:53:48 +00:00
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-scrollbar-nvim = {
|
2023-02-03 19:53:48 +00:00
|
|
|
url = "github:petertriho/nvim-scrollbar";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-cinnamon-nvim = {
|
2023-02-03 21:20:20 +00:00
|
|
|
url = "github:declancm/cinnamon.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-cellular-automaton = {
|
2023-02-05 13:14:25 +00:00
|
|
|
url = "github:Eandrju/cellular-automaton.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-indent-blankline = {
|
2023-02-01 19:11:37 +00:00
|
|
|
url = "github:lukas-reineke/indent-blankline.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
2024-04-08 00:28:49 +00:00
|
|
|
|
|
|
|
plugin-nvim-web-devicons = {
|
2023-05-26 13:08:23 +00:00
|
|
|
url = "github:nvim-tree/nvim-web-devicons";
|
2023-02-01 19:11:37 +00:00
|
|
|
flake = false;
|
|
|
|
};
|
2024-04-08 00:28:49 +00:00
|
|
|
|
|
|
|
plugin-gitsigns-nvim = {
|
2023-02-01 19:11:37 +00:00
|
|
|
url = "github:lewis6991/gitsigns.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-14 15:33:16 +00:00
|
|
|
plugin-vim-fugitive = {
|
|
|
|
url = "github:tpope/vim-fugitive";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-fidget-nvim = {
|
2024-02-11 01:52:02 +00:00
|
|
|
url = "github:j-hui/fidget.nvim";
|
2023-02-27 19:30:12 +00:00
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-highlight-undo = {
|
2023-10-21 22:22:31 +00:00
|
|
|
url = "github:tzachar/highlight-undo.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2023-02-01 20:59:35 +00:00
|
|
|
# Minimap
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-minimap-vim = {
|
2023-02-01 20:59:35 +00:00
|
|
|
url = "github:wfxr/minimap.vim";
|
|
|
|
flake = false;
|
2023-02-01 19:11:37 +00:00
|
|
|
};
|
2023-02-03 21:20:20 +00:00
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-codewindow-nvim = {
|
2023-02-03 21:20:20 +00:00
|
|
|
url = "github:gorbit99/codewindow.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
# Notifications
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-nvim-notify = {
|
2023-02-03 21:20:20 +00:00
|
|
|
url = "github:rcarriga/nvim-notify";
|
|
|
|
flake = false;
|
|
|
|
};
|
2023-02-03 22:45:31 +00:00
|
|
|
|
|
|
|
# Utilities
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-ccc = {
|
2023-02-03 22:45:31 +00:00
|
|
|
url = "github:uga-rosa/ccc.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
2023-02-03 23:12:41 +00:00
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-diffview-nvim = {
|
2023-03-01 09:08:24 +00:00
|
|
|
url = "github:sindrets/diffview.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-icon-picker-nvim = {
|
2023-02-05 20:57:19 +00:00
|
|
|
url = "github:ziontee113/icon-picker.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-which-key = {
|
2023-02-06 05:14:13 +00:00
|
|
|
url = "github:folke/which-key.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-cheatsheet-nvim = {
|
2023-02-06 05:14:13 +00:00
|
|
|
url = "github:sudormrfbin/cheatsheet.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-gesture-nvim = {
|
2023-02-06 05:14:13 +00:00
|
|
|
url = "github:notomo/gesture.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-hop-nvim = {
|
2023-03-09 10:28:02 +00:00
|
|
|
url = "github:phaazon/hop.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
2023-02-05 22:09:12 +00:00
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-leap-nvim = {
|
2023-04-04 23:14:13 +00:00
|
|
|
url = "github:ggandor/leap.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-smartcolumn = {
|
2023-04-05 13:59:08 +00:00
|
|
|
url = "github:m4xshen/smartcolumn.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-nvim-surround = {
|
2023-06-07 11:28:27 +00:00
|
|
|
url = "github:kylechui/nvim-surround";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-05-06 21:52:33 +00:00
|
|
|
plugin-glow-nvim = {
|
|
|
|
url = "github:ellisonleao/glow.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
plugin-image-nvim = {
|
|
|
|
url = "github:3rd/image.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2023-03-09 10:28:02 +00:00
|
|
|
# Note-taking
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-obsidian-nvim = {
|
2023-02-05 22:09:12 +00:00
|
|
|
url = "github:epwalsh/obsidian.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-orgmode-nvim = {
|
2023-02-05 22:09:12 +00:00
|
|
|
url = "github:nvim-orgmode/orgmode";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-mind-nvim = {
|
2023-02-16 20:57:56 +00:00
|
|
|
url = "github:phaazon/mind.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2023-08-06 11:24:54 +00:00
|
|
|
# Spellchecking
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-vim-dirtytalk = {
|
2023-08-06 11:24:54 +00:00
|
|
|
url = "github:psliwka/vim-dirtytalk";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2023-02-05 23:44:38 +00:00
|
|
|
# Terminal
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-toggleterm-nvim = {
|
2023-02-05 23:44:38 +00:00
|
|
|
url = "github:akinsho/toggleterm.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2023-02-06 01:14:01 +00:00
|
|
|
# UI
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-nvim-navbuddy = {
|
2023-07-19 19:49:06 +00:00
|
|
|
url = "github:SmiteshP/nvim-navbuddy";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-nvim-navic = {
|
2023-07-19 19:49:06 +00:00
|
|
|
url = "github:SmiteshP/nvim-navic";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-noice-nvim = {
|
2023-02-06 00:55:19 +00:00
|
|
|
url = "github:folke/noice.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-modes-nvim = {
|
2023-04-03 09:12:05 +00:00
|
|
|
url = "github:mvllow/modes.nvim";
|
2023-06-04 07:24:06 +00:00
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-nvim-colorizer-lua = {
|
2024-02-10 01:04:51 +00:00
|
|
|
url = "github:NvChad/nvim-colorizer.lua";
|
2023-06-06 00:05:05 +00:00
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-vim-illuminate = {
|
2023-06-06 00:05:05 +00:00
|
|
|
url = "github:RRethy/vim-illuminate";
|
2023-04-03 09:12:05 +00:00
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2023-02-06 01:14:01 +00:00
|
|
|
# Assistant
|
2024-04-20 14:21:40 +00:00
|
|
|
plugin-chatgpt = {
|
|
|
|
url = "github:jackMort/ChatGPT.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-copilot-lua = {
|
2023-02-06 01:14:01 +00:00
|
|
|
url = "github:zbirenbaum/copilot.lua";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-copilot-cmp = {
|
2023-07-24 13:51:24 +00:00
|
|
|
url = "github:zbirenbaum/copilot-cmp";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2023-02-06 02:26:52 +00:00
|
|
|
# Session management
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-nvim-session-manager = {
|
2023-02-06 02:26:52 +00:00
|
|
|
url = "github:Shatur/neovim-session-manager";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2023-02-05 20:57:19 +00:00
|
|
|
# Dependencies
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-plenary-nvim = {
|
2023-02-05 20:57:19 +00:00
|
|
|
# (required by crates-nvim)
|
|
|
|
url = "github:nvim-lua/plenary.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-dressing-nvim = {
|
2023-02-05 20:57:19 +00:00
|
|
|
# (required by icon-picker-nvim)
|
|
|
|
url = "github:stevearc/dressing.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
2023-02-05 22:09:12 +00:00
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-vim-markdown = {
|
2023-02-05 22:09:12 +00:00
|
|
|
# (required by obsidian-nvim)
|
|
|
|
url = "github:preservim/vim-markdown";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-tabular = {
|
2023-02-05 22:09:12 +00:00
|
|
|
# (required by vim-markdown)
|
|
|
|
url = "github:godlygeek/tabular";
|
|
|
|
flake = false;
|
|
|
|
};
|
2023-02-06 00:55:19 +00:00
|
|
|
|
2024-10-15 15:31:18 +00:00
|
|
|
plugin-lua-utils-nvim = {
|
|
|
|
url = "github:nvim-neorg/lua-utils.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
plugin-pathlib-nvim = {
|
|
|
|
url = "github:pysan3/pathlib.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
plugin-neorg = {
|
|
|
|
url = "github:nvim-neorg/neorg";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
plugin-neorg-telescope = {
|
|
|
|
url = "github:nvim-neorg/neorg-telescope";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-nui-nvim = {
|
2023-02-06 05:14:13 +00:00
|
|
|
# (required by noice.nvim)
|
2023-02-06 00:55:19 +00:00
|
|
|
url = "github:MunifTanjim/nui.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
2023-04-04 23:14:13 +00:00
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-vim-repeat = {
|
|
|
|
# (required by leap.nvim)
|
2023-04-04 23:14:13 +00:00
|
|
|
url = "github:tpope/vim-repeat";
|
|
|
|
flake = false;
|
|
|
|
};
|
2024-04-03 18:13:19 +00:00
|
|
|
|
2024-04-08 00:28:49 +00:00
|
|
|
plugin-nvim-nio = {
|
2024-08-08 18:45:33 +00:00
|
|
|
# (required by nvim-dap-ui)
|
2024-04-03 18:13:19 +00:00
|
|
|
url = "github:nvim-neotest/nvim-nio";
|
|
|
|
flake = false;
|
|
|
|
};
|
2024-08-08 18:45:33 +00:00
|
|
|
|
|
|
|
plugin-new-file-template-nvim = {
|
|
|
|
# (required by new-file-template.nvim)
|
|
|
|
url = "github:otavioschwanck/new-file-template.nvim";
|
|
|
|
flake = false;
|
|
|
|
};
|
2023-02-01 20:59:35 +00:00
|
|
|
};
|
2023-02-01 19:11:37 +00:00
|
|
|
}
|