upd
This commit is contained in:
@@ -13,10 +13,6 @@
|
|||||||
|
|
||||||
nixvim.url = "github:nix-community/nixvim";
|
nixvim.url = "github:nix-community/nixvim";
|
||||||
nixvim.inputs.nixpkgs.follows = "nixpkgs";
|
nixvim.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
# monolisa.inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
|
|
||||||
# fred-drake.url = "github:fred-drake/neovim";
|
|
||||||
# fred-drake.inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = {
|
outputs = {
|
||||||
@@ -24,6 +20,7 @@
|
|||||||
nixpkgs,
|
nixpkgs,
|
||||||
home-manager,
|
home-manager,
|
||||||
unlisted-fonts,
|
unlisted-fonts,
|
||||||
|
nixvim,
|
||||||
...
|
...
|
||||||
} @ inputs: let
|
} @ inputs: let
|
||||||
info = import ./info.nix;
|
info = import ./info.nix;
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{...}: {
|
{...}: {
|
||||||
programs.btop = {
|
programs.btop = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
vim_keys = true;
|
vim_keys = true;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -4,7 +4,14 @@
|
|||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
plugins.web-devicons.enable = true;
|
# `plugins.mini.enable` with `plugins.mini.modules.icons` and `plugins.mini.mockDevIcons`.
|
||||||
|
# plugins.web-devicons.enable = true;
|
||||||
|
plugins.mini = {
|
||||||
|
enable = true;
|
||||||
|
mockDevIcons = true;
|
||||||
|
modules = [
|
||||||
|
];
|
||||||
|
};
|
||||||
plugins.telescope = {
|
plugins.telescope = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -16,13 +16,13 @@ in {
|
|||||||
# ripgrep
|
# ripgrep
|
||||||
# ];
|
# ];
|
||||||
imports = [
|
imports = [
|
||||||
inputs.nixvim.homeManagerModules.default
|
inputs.nixvim.homeModules.nixvim
|
||||||
];
|
];
|
||||||
programs.neovim.enable = true;
|
programs.neovim.enable = true;
|
||||||
programs.nixvim = {
|
programs.nixvim = {
|
||||||
imports = [
|
imports = [
|
||||||
./custom/dashboard.nix
|
./custom/dashboard.nix
|
||||||
./custom/telescope.nix
|
# ./custom/telescope.nix
|
||||||
];
|
];
|
||||||
enable = true;
|
enable = true;
|
||||||
plugins = {
|
plugins = {
|
||||||
|
|||||||
Reference in New Issue
Block a user