mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-09 14:45:58 +01:00
style: formatting
This commit is contained in:
parent
9134152221
commit
bd0dc6093c
3 changed files with 13 additions and 6 deletions
|
@ -1,6 +1,6 @@
|
||||||
{lib}:
|
{lib}:
|
||||||
with lib; let
|
with lib; let
|
||||||
# Plugin must be same as input name
|
# Plugin must be same as input name from flake.nix
|
||||||
availablePlugins = [
|
availablePlugins = [
|
||||||
"nvim-treesitter-context"
|
"nvim-treesitter-context"
|
||||||
"gitsigns-nvim"
|
"gitsigns-nvim"
|
||||||
|
@ -40,6 +40,7 @@ with lib; let
|
||||||
"rust-tools"
|
"rust-tools"
|
||||||
"onedark"
|
"onedark"
|
||||||
"catppuccin"
|
"catppuccin"
|
||||||
|
"minimap-vim"
|
||||||
];
|
];
|
||||||
|
|
||||||
pluginsType = with types; listOf (nullOr (either (enum availablePlugins) package));
|
pluginsType = with types; listOf (nullOr (either (enum availablePlugins) package));
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ pkgs, config, lib, ... }:
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
with lib; {
|
with lib; {
|
||||||
config = {
|
config = {
|
||||||
vim.theme = {
|
vim.theme = {
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
{ pkgs
|
{
|
||||||
, config
|
pkgs,
|
||||||
, lib
|
config,
|
||||||
, ...
|
lib,
|
||||||
|
...
|
||||||
}:
|
}:
|
||||||
with lib; {
|
with lib; {
|
||||||
config = {
|
config = {
|
||||||
|
|
Loading…
Reference in a new issue