4-14 update
This commit is contained in:
@@ -2,7 +2,9 @@
|
||||
let
|
||||
desktop = host == "oganesson";
|
||||
screenshot_bind = if desktop then
|
||||
[ "super, print, exec, grimblast copy area" ]
|
||||
[ "super, print, exec, grimblast copy area"
|
||||
"super shift, print, exec, grimblast --freeze copy area"
|
||||
]
|
||||
else
|
||||
[
|
||||
# My laptop does not have a printscreen button
|
||||
@@ -189,7 +191,7 @@ in {
|
||||
"super, up, exec, pactl set-sink-volume @default_sink@ +10%"
|
||||
"super, down, exec, pactl set-sink-volume @default_sink@ -10%"
|
||||
"super, t, exec, swaync-client -t -sw"
|
||||
"super, a, exec, firefox"
|
||||
"super, a, exec, librewolf"
|
||||
"super, q, exec, kitty"
|
||||
"super shift, q, exec, [float;size 40% 30%;move onscreen cursor -50% -50%] kitty"
|
||||
"super, c, killactive,"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{ lib, self, config, host, pkgs, ... }:
|
||||
|
||||
let
|
||||
scheme = "ayu-dark";
|
||||
scheme = "chalk";
|
||||
wallpaper = "${self}/assets/wallpapers/dark-waves.jpg";
|
||||
server = (host == "xenon");
|
||||
in {
|
||||
|
||||
@@ -49,7 +49,12 @@ in {
|
||||
wf-recorder
|
||||
toilet
|
||||
vkbasalt
|
||||
firefox
|
||||
librewolf
|
||||
spotify
|
||||
zathura
|
||||
chromium
|
||||
obs-studio
|
||||
gparted
|
||||
dust
|
||||
porsmo
|
||||
rustup
|
||||
@@ -62,6 +67,10 @@ in {
|
||||
glfw
|
||||
glxinfo
|
||||
xwayland
|
||||
discord
|
||||
cloc
|
||||
wine
|
||||
nodejs_latest
|
||||
] ++ scripts;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -22,7 +22,6 @@
|
||||
"git"
|
||||
"fzf"
|
||||
"aliases"
|
||||
"command-not-found"
|
||||
"eza"
|
||||
];
|
||||
};
|
||||
|
||||
@@ -30,8 +30,8 @@
|
||||
};
|
||||
|
||||
keybindings = {
|
||||
"ctrl+shift+h" = "next_tab";
|
||||
"ctrl+shift+l" = "previous_tab";
|
||||
"ctrl+shift+l" = "next_tab";
|
||||
"ctrl+shift+h" = "previous_tab";
|
||||
"ctrl+shift+j" = "scroll_end";
|
||||
"ctrl+shift+k" = "scroll_home";
|
||||
"ctrl+shift+equal" = "change_font_size all +2.0";
|
||||
|
||||
@@ -5,7 +5,7 @@ in {
|
||||
programs.nixvim = {
|
||||
colorschemes.base16 = {
|
||||
enable = true;
|
||||
colorscheme = "ayu-dark";
|
||||
colorscheme = "chalk";
|
||||
#colorscheme = {
|
||||
# base00 = "#${scheme.base00}";
|
||||
# base01 = "#${scheme.base01}";
|
||||
@@ -37,6 +37,8 @@ in {
|
||||
vim.g.neovide_cursor_animate_in_insert_mode = false
|
||||
end
|
||||
|
||||
vim.g.vimwiki_list = {{path = '~/vimwiki/', syntax = 'markdown', ext = '.md'}}
|
||||
|
||||
vim.opt.number = true
|
||||
vim.opt.relativenumber = true
|
||||
vim.opt.hlsearch = true
|
||||
|
||||
@@ -58,6 +58,9 @@
|
||||
enable = true;
|
||||
installCargo = false;
|
||||
installRustc = false;
|
||||
settings = {
|
||||
check.allTargets = false;
|
||||
};
|
||||
};
|
||||
nixd = {
|
||||
enable = true;
|
||||
|
||||
@@ -2,7 +2,18 @@
|
||||
programs.nixvim = {
|
||||
plugins.telescope = {
|
||||
enable = true;
|
||||
settings = { pickers = { find_files = { hidden = true; }; }; };
|
||||
settings = {
|
||||
defaults = {
|
||||
file_ignore_patterns = [
|
||||
"%.snap"
|
||||
];
|
||||
};
|
||||
pickers = {
|
||||
find_files = {
|
||||
hidden = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user