Update hyprland and vscodium
This commit is contained in:
parent
fd10fc92ec
commit
40814540cd
4 changed files with 49 additions and 4 deletions
|
@ -168,8 +168,8 @@
|
||||||
];
|
];
|
||||||
bindm = [
|
bindm = [
|
||||||
# Move/resize windows with mainMod + LMB/RMB and dragging
|
# Move/resize windows with mainMod + LMB/RMB and dragging
|
||||||
''SHIFT, mouse:272, movewindow''
|
''LCTRL SHIFT, mouse:272, movewindow''
|
||||||
''SHIFT, mouse:273, resizewindow''
|
''LCTRL SHIFT, mouse:273, resizewindow''
|
||||||
];
|
];
|
||||||
|
|
||||||
exec-once = ''bash ~/.config/hypr/start.sh'';
|
exec-once = ''bash ~/.config/hypr/start.sh'';
|
||||||
|
|
|
@ -1,8 +1,54 @@
|
||||||
{ config, pkgs, ... }: {
|
{ config; pkgs; ... }: {
|
||||||
programs.vscode = {
|
programs.vscode = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.vscodium;
|
package = pkgs.vscodium;
|
||||||
enableUpdateCheck = false;
|
enableUpdateCheck = false;
|
||||||
enableExtensionUpdateCheck = false;
|
enableExtensionUpdateCheck = false;
|
||||||
|
extensions = with pkgs.vscode-extensions; [
|
||||||
|
waderyan.gitblame # See Git Blame info in status bar
|
||||||
|
vscodevim.vim # Vim keybinds
|
||||||
|
oderwat.indent-rainbow # Colorise indents
|
||||||
|
naumovs.color-highlight # Highlight HTML color codes
|
||||||
|
|
||||||
|
# Theme
|
||||||
|
enkia.tokyo-night
|
||||||
|
];
|
||||||
|
userSettings = {
|
||||||
|
# Theming:
|
||||||
|
"window.autoDetectColorScheme" = false;
|
||||||
|
"workbench.preferredLightColorTheme" = "Tokyo Night Light";
|
||||||
|
"workbench.preferredDarkColorTheme" = "Tokyo Night";
|
||||||
|
"workbench.colorTheme" = "Tokyo Night";
|
||||||
|
"workbench.iconTheme" = "";
|
||||||
|
|
||||||
|
# Workbench
|
||||||
|
"workbench.startupEditor" = "none";
|
||||||
|
"diffEditor.ignoreTrimWhitespace" = false;
|
||||||
|
"workbench.editor.autoLockGroups" = {
|
||||||
|
"mainThreadWebview-markdown.preview" = true
|
||||||
|
};
|
||||||
|
"editor.fontFamily" = "JetBrainsMono Regular";
|
||||||
|
"editor.fontLigatures" = true;
|
||||||
|
|
||||||
|
# Telemetry =
|
||||||
|
"redhat.telemetry.enabled" = false;
|
||||||
|
"telemetry.telemetryLevel" = "off";
|
||||||
|
|
||||||
|
# Git =
|
||||||
|
"git.enableSmartCommit" = true;
|
||||||
|
"git.confirmSync" = false;
|
||||||
|
"git.autofetch" = true;
|
||||||
|
|
||||||
|
# Language Specific
|
||||||
|
# Python =
|
||||||
|
"python.diagnostics.sourceMapsEnabled" = true;
|
||||||
|
"python.linting.pylintEnabled" = true;
|
||||||
|
"python.linting.pylintArgs" = [
|
||||||
|
"--rcfile=~/.config/pylintrc"
|
||||||
|
];
|
||||||
|
|
||||||
|
# Rust
|
||||||
|
"rust-analyzer.cargo.buildScripts.overrideCommand" = null;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
|
@ -1,7 +1,6 @@
|
||||||
{ inputs, config, lib, pkgs, modulesPath, desktop, username, platform, ... }: {
|
{ inputs, config, lib, pkgs, modulesPath, desktop, username, platform, ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
./disks.nix
|
./disks.nix
|
||||||
./ollama.nix
|
|
||||||
../../common/modules/secureboot.nix
|
../../common/modules/secureboot.nix
|
||||||
../../common/modules/ssh-luks.nix
|
../../common/modules/ssh-luks.nix
|
||||||
../../common/services/openrazer.nix
|
../../common/services/openrazer.nix
|
||||||
|
|
Loading…
Reference in a new issue