diff --git a/config/autopairs.nix b/config/autopairs.nix deleted file mode 100644 index e42336d..0000000 --- a/config/autopairs.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ - plugins = { - nvim-autopairs = { - enable = true; - }; - }; -} diff --git a/config/default.nix b/config/default.nix index 59b0959..a9a259c 100644 --- a/config/default.nix +++ b/config/default.nix @@ -1,19 +1,6 @@ { # Import all your configuration modules here - imports = [ - ./lsp.nix - ./lsp-format.nix - ./lsp-lines.nix - ./which-key.nix - ./surround.nix - ./autopairs.nix - ./treesitter.nix - ./treesitter-context.nix - ./treesitter-textobjects.nix - ./telescope.nix - ./web-devicons.nix - ./undotree.nix - ]; + imports = [ ./mini.nix ]; opts = { number = true; relativenumber = true; diff --git a/config/lsp-format.nix b/config/lsp-format.nix deleted file mode 100644 index 32f0e3d..0000000 --- a/config/lsp-format.nix +++ /dev/null @@ -1 +0,0 @@ -{ plugins = { lsp-format = { enable = true; }; }; } diff --git a/config/lsp-lines.nix b/config/lsp-lines.nix deleted file mode 100644 index cb4ec1d..0000000 --- a/config/lsp-lines.nix +++ /dev/null @@ -1 +0,0 @@ -{ plugins = { lsp-lines = { enable = true; }; }; } diff --git a/config/lsp.nix b/config/lsp.nix deleted file mode 100644 index 38a841e..0000000 --- a/config/lsp.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ - plugins = { - lsp = { - enable = true; - servers = { - clangd.enable = true; - bashls.enable = true; - nixd.enable = true; - marksman.enable = true; - lua_ls.enable = true; - }; - }; - }; -} diff --git a/config/mini.nix b/config/mini.nix new file mode 100644 index 0000000..b981386 --- /dev/null +++ b/config/mini.nix @@ -0,0 +1,49 @@ +{ + plugins = { + mini = { + enable = true; + modules = { + ai = { }; + align = { }; + comment = { }; + completion = { }; + move = { }; + operators = { }; + pairs = { }; + snippets = { }; + splitjoin = { }; + surround = { }; + basics = { }; + bracketed = { }; + bufremove = { }; + clue = { }; + deps = { }; + diff = { }; + extra = { }; + files = { }; + git = { }; + jump = { }; + jump2d = { }; + misc = { }; + pick = { }; + sessions = { }; + visits = { }; + animate = { }; + colors = { }; + cursorword = { }; + hipatterns = { }; + icons = { }; + indentscope = { }; + map = { }; + notify = { }; + starter = { }; + statusline = { }; + tabline = { }; + trailspace = { }; + doc = { }; + fuzzy = { }; + test = { }; + }; + }; + }; +} diff --git a/config/surround.nix b/config/surround.nix deleted file mode 100644 index afaf7d9..0000000 --- a/config/surround.nix +++ /dev/null @@ -1 +0,0 @@ -{ plugins = { nvim-surround = { enable = true; }; }; } diff --git a/config/telescope.nix b/config/telescope.nix deleted file mode 100644 index 994c20f..0000000 --- a/config/telescope.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ - plugins = { - telescope = { - enable = true; - keymaps = { - "ff" = { - action = "find_files"; - options = { desc = "Telescope find files"; }; - }; - "fg" = { - action = "live_grep"; - options = { desc = "Telescope live grep"; }; - }; - "fb" = { - action = "buffers"; - options = { desc = "Telescope buffers"; }; - }; - "fh" = { - action = "help_tags"; - options = { desc = "Telescope help tags"; }; - }; - }; - }; - }; -} diff --git a/config/treesitter-context.nix b/config/treesitter-context.nix deleted file mode 100644 index 9371139..0000000 --- a/config/treesitter-context.nix +++ /dev/null @@ -1 +0,0 @@ -{ plugins = { treesitter-context = { enable = true; }; }; } diff --git a/config/treesitter-textobjects.nix b/config/treesitter-textobjects.nix deleted file mode 100644 index a8e34aa..0000000 --- a/config/treesitter-textobjects.nix +++ /dev/null @@ -1 +0,0 @@ -{ plugins = { treesitter-textobjects = { enable = true; }; }; } diff --git a/config/treesitter.nix b/config/treesitter.nix deleted file mode 100644 index d3c0645..0000000 --- a/config/treesitter.nix +++ /dev/null @@ -1,8 +0,0 @@ -{ - plugins = { - treesitter = { - enable = true; - settings = { highlight.enable = true; }; - }; - }; -} diff --git a/config/undotree.nix b/config/undotree.nix deleted file mode 100644 index c9fd124..0000000 --- a/config/undotree.nix +++ /dev/null @@ -1 +0,0 @@ -{ plugins = { undotree = { enable = true; }; }; } diff --git a/config/web-devicons.nix b/config/web-devicons.nix deleted file mode 100644 index 499d645..0000000 --- a/config/web-devicons.nix +++ /dev/null @@ -1 +0,0 @@ -{ plugins = { web-devicons = { enable = true; }; }; } diff --git a/config/which-key.nix b/config/which-key.nix deleted file mode 100644 index cc512d3..0000000 --- a/config/which-key.nix +++ /dev/null @@ -1,8 +0,0 @@ -{ - plugins = { - which-key = { - enable = true; - settings = { preset = "helix"; }; - }; - }; -}