mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-01-18 16:02:24 +00:00
Merge pull request #563 from tomasguinzburg/feat-theme-nord
Some checks are pending
Set up binary cache / cachix (default) (push) Waiting to run
Set up binary cache / cachix (maximal) (push) Waiting to run
Set up binary cache / cachix (nix) (push) Waiting to run
Validate flake & check documentation / Validate Flake Documentation (docs) (push) Waiting to run
Validate flake & check documentation / Validate Flake Documentation (docs-html) (push) Waiting to run
Validate flake & check documentation / Validate Flake Documentation (docs-json) (push) Waiting to run
Validate flake & check documentation / Validate Flake Documentation (docs-manpages) (push) Waiting to run
Validate flake & check documentation / Validate hyperlinks in documentation sources (push) Waiting to run
Validate flake & check formatting / Validate Flake (push) Waiting to run
Validate flake & check formatting / Formatting via Alejandra (push) Waiting to run
Build and deploy documentation / Check latest commit (push) Waiting to run
Build and deploy documentation / publish (push) Blocked by required conditions
Check for typos in the source tree / check-typos (push) Waiting to run
Some checks are pending
Set up binary cache / cachix (default) (push) Waiting to run
Set up binary cache / cachix (maximal) (push) Waiting to run
Set up binary cache / cachix (nix) (push) Waiting to run
Validate flake & check documentation / Validate Flake Documentation (docs) (push) Waiting to run
Validate flake & check documentation / Validate Flake Documentation (docs-html) (push) Waiting to run
Validate flake & check documentation / Validate Flake Documentation (docs-json) (push) Waiting to run
Validate flake & check documentation / Validate Flake Documentation (docs-manpages) (push) Waiting to run
Validate flake & check documentation / Validate hyperlinks in documentation sources (push) Waiting to run
Validate flake & check formatting / Validate Flake (push) Waiting to run
Validate flake & check formatting / Formatting via Alejandra (push) Waiting to run
Build and deploy documentation / Check latest commit (push) Waiting to run
Build and deploy documentation / publish (push) Blocked by required conditions
Check for typos in the source tree / check-typos (push) Waiting to run
feat: add nord theme
This commit is contained in:
commit
ba27d85dee
5 changed files with 36 additions and 1 deletions
|
@ -62,8 +62,10 @@
|
||||||
[tomasguinzburg](https://github.com/tomasguinzburg):
|
[tomasguinzburg](https://github.com/tomasguinzburg):
|
||||||
|
|
||||||
[solargraph]: https://github.com/castwide/solargraph
|
[solargraph]: https://github.com/castwide/solargraph
|
||||||
|
[gbprod/nord.nvim]: https://github.com/gbprod/nord.nvim
|
||||||
|
|
||||||
- Add Ruby support under `vim.languages.ruby` using [solargraph].
|
- Add Ruby support under `vim.languages.ruby` using [solargraph].
|
||||||
|
- Add `nord` theme from [gbprod/nord.nvim].
|
||||||
|
|
||||||
[thamenato](https://github.com/thamenato):
|
[thamenato](https://github.com/thamenato):
|
||||||
|
|
||||||
|
|
17
flake.lock
17
flake.lock
|
@ -1097,6 +1097,22 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"plugin-nord": {
|
||||||
|
"flake": false,
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1737019140,
|
||||||
|
"narHash": "sha256-ZhDS7Y90DKp+jkUqcoQRf/zHy4DVgSDQXrnl3sBYJXs=",
|
||||||
|
"owner": "gbprod",
|
||||||
|
"repo": "nord.nvim",
|
||||||
|
"rev": "b0f3ed242fd8e5bafa7231367821d46c6c835dd8",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "gbprod",
|
||||||
|
"repo": "nord.nvim",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"plugin-nui-nvim": {
|
"plugin-nui-nvim": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
|
@ -2142,6 +2158,7 @@
|
||||||
"plugin-new-file-template-nvim": "plugin-new-file-template-nvim",
|
"plugin-new-file-template-nvim": "plugin-new-file-template-nvim",
|
||||||
"plugin-noice-nvim": "plugin-noice-nvim",
|
"plugin-noice-nvim": "plugin-noice-nvim",
|
||||||
"plugin-none-ls": "plugin-none-ls",
|
"plugin-none-ls": "plugin-none-ls",
|
||||||
|
"plugin-nord": "plugin-nord",
|
||||||
"plugin-nui-nvim": "plugin-nui-nvim",
|
"plugin-nui-nvim": "plugin-nui-nvim",
|
||||||
"plugin-nvim-autopairs": "plugin-nvim-autopairs",
|
"plugin-nvim-autopairs": "plugin-nvim-autopairs",
|
||||||
"plugin-nvim-bufferline-lua": "plugin-nvim-bufferline-lua",
|
"plugin-nvim-bufferline-lua": "plugin-nvim-bufferline-lua",
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
self,
|
self,
|
||||||
...
|
...
|
||||||
} @ inputs: let
|
} @ inputs: let
|
||||||
# call the extedended library with `inputs`
|
# call the extended library with `inputs`
|
||||||
# inputs is used to get the original standard library, and to pass inputs to the plugin autodiscovery function
|
# 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;
|
lib = import ./lib/stdlib-extended.nix inputs;
|
||||||
in
|
in
|
||||||
|
@ -419,6 +419,11 @@
|
||||||
flake = false;
|
flake = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
plugin-nord = {
|
||||||
|
url = "github:gbprod/nord.nvim";
|
||||||
|
flake = false;
|
||||||
|
};
|
||||||
|
|
||||||
# Rust crates
|
# Rust crates
|
||||||
plugin-crates-nvim = {
|
plugin-crates-nvim = {
|
||||||
url = "github:Saecki/crates.nvim";
|
url = "github:Saecki/crates.nvim";
|
||||||
|
|
|
@ -4,4 +4,5 @@
|
||||||
"catppuccin"
|
"catppuccin"
|
||||||
"oxocarbon"
|
"oxocarbon"
|
||||||
"gruvbox"
|
"gruvbox"
|
||||||
|
"nord"
|
||||||
]
|
]
|
||||||
|
|
|
@ -177,4 +177,14 @@ in {
|
||||||
'';
|
'';
|
||||||
styles = ["main" "moon" "dawn"];
|
styles = ["main" "moon" "dawn"];
|
||||||
};
|
};
|
||||||
|
nord = {
|
||||||
|
setup = {transparent ? false, ...}: ''
|
||||||
|
require("nord").setup({
|
||||||
|
transparent = ${boolToString transparent},
|
||||||
|
search = "vscode", -- [vim|vscode]
|
||||||
|
})
|
||||||
|
|
||||||
|
vim.cmd.colorscheme("nord")
|
||||||
|
'';
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue