Add neovim config, and some minor changes
This commit is contained in:
parent
d97bda1dee
commit
8e7bac7c8a
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
[submodule "common/users/cameron/home-manager/other-files/nvim"]
|
||||||
|
path = common/users/cameron/home-manager/other-files/nvim
|
||||||
|
url = ssh://gitea@gitea.cam123.dev:9024/CameronReed/Neovim-Config.git
|
@ -6,9 +6,9 @@
|
|||||||
|
|
||||||
target = ".config/hypr/hyprpaper.conf";
|
target = ".config/hypr/hyprpaper.conf";
|
||||||
text = ''
|
text = ''
|
||||||
preload = ${./wallpapers/lake.jpg}
|
preload = ${./other-files/wallpapers/lake.jpg}
|
||||||
|
|
||||||
wallpaper = ,${./wallpapers/lake.jpg}
|
wallpaper = ,${./other-files/wallpapers/lake.jpg}
|
||||||
|
|
||||||
splash = false
|
splash = false
|
||||||
'';
|
'';
|
||||||
|
14
common/users/cameron/home-manager/nvim.nix
Normal file
14
common/users/cameron/home-manager/nvim.nix
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
{ pkgs, lib, config, osConfig, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
xdg.configFile."nvim" = {
|
||||||
|
source = ./other-files/nvim;
|
||||||
|
recursive = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
lua-language-server
|
||||||
|
ripgrep
|
||||||
|
neovim
|
||||||
|
];
|
||||||
|
}
|
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 4b08142700cc6ae9555248b4049478912d2ab3fd
|
Before Width: | Height: | Size: 912 KiB After Width: | Height: | Size: 912 KiB |
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
output = {
|
output = {
|
||||||
"*" = {
|
"*" = {
|
||||||
bg = "~/Pictures/background.jpg fill";
|
bg = "${./other-files/wallpapers/lake.jpg} fill";
|
||||||
};
|
};
|
||||||
|
|
||||||
eDP-1 = {
|
eDP-1 = {
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
settings = {
|
settings = {
|
||||||
ignore-empty-password = true;
|
ignore-empty-password = true;
|
||||||
color = "333333";
|
color = "333333";
|
||||||
image = "${./wallpapers/lake.jpg}";
|
image = "${./other-files/wallpapers/lake.jpg}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
inputs.nix-colors.homeManagerModules.default
|
||||||
|
|
||||||
./home-manager/options.nix
|
./home-manager/options.nix
|
||||||
|
|
||||||
./home-manager/sway.nix
|
./home-manager/sway.nix
|
||||||
@ -12,7 +14,7 @@
|
|||||||
./home-manager/waybar.nix
|
./home-manager/waybar.nix
|
||||||
|
|
||||||
./home-manager/zsh.nix
|
./home-manager/zsh.nix
|
||||||
|
./home-manager/nvim.nix
|
||||||
./home-manager/lf.nix
|
./home-manager/lf.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -96,11 +96,11 @@
|
|||||||
curl
|
curl
|
||||||
wget
|
wget
|
||||||
kitty
|
kitty
|
||||||
ranger
|
|
||||||
lf
|
lf
|
||||||
tmux
|
tmux
|
||||||
firefox
|
firefox
|
||||||
pulsemixer
|
pulsemixer
|
||||||
|
gcc
|
||||||
]);
|
]);
|
||||||
|
|
||||||
environment.shells = with pkgs; [ bash zsh ];
|
environment.shells = with pkgs; [ bash zsh ];
|
||||||
|
Loading…
Reference in New Issue
Block a user