Set up Hyprland config. Restructured Desktop environment configs into separate folders.
This commit is contained in:
47
neovim.nix
47
neovim.nix
@ -1,25 +1,32 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
programs.neovim = {
|
||||
# ...
|
||||
plugins = with pkgs.vimPlugins; [
|
||||
lazy-nvim
|
||||
];
|
||||
environment.systemPackages = with pkgs;
|
||||
[
|
||||
neovim
|
||||
#vimPlugins.LazyVim
|
||||
];
|
||||
|
||||
programs.neovim = {
|
||||
# ...
|
||||
plugins = with pkgs.vimPlugins; [
|
||||
|
||||
LazyVim
|
||||
];
|
||||
|
||||
extraLuaConfig =
|
||||
# lua
|
||||
''
|
||||
require("lazy").setup({
|
||||
-- disable all update / install features
|
||||
-- this is handled by nix
|
||||
rocks = { enabled = false },
|
||||
pkg = { enabled = false },
|
||||
install = { missing = false },
|
||||
change_detection = { enabled = false },
|
||||
spec = {
|
||||
-- TODO
|
||||
},
|
||||
})
|
||||
'';
|
||||
#extraLuaConfig =
|
||||
## lua
|
||||
#''
|
||||
# require("lazy").setup({
|
||||
# -- disable all update / install features
|
||||
# -- this is handled by nix
|
||||
# rocks = { enabled = false },
|
||||
# pkg = { enabled = false },
|
||||
# install = { missing = false },
|
||||
# change_detection = { enabled = false },
|
||||
# spec = {
|
||||
# -- TODO
|
||||
# },
|
||||
# })
|
||||
#'';
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user