Fix editor var, add new python package for lsp-bridge update

This commit is contained in:
Curt Spark 2024-12-17 10:12:47 +00:00
parent 22e1cd672b
commit 56a075687a
4 changed files with 7 additions and 5 deletions

View File

@ -53,7 +53,7 @@
}; };
home.sessionVariables = { home.sessionVariables = {
EDITOR = "emacsclient -n"; EDITOR = "emacsclient -c";
}; };
} }

View File

@ -314,7 +314,7 @@ fi
]; ];
home.sessionVariables = { home.sessionVariables = {
EDITOR = "emacsclient -n"; EDITOR = "emacsclient -c";
# EDITOR = "nvim"; # EDITOR = "nvim";
# Dotnet path not found fix # Dotnet path not found fix

View File

@ -28,6 +28,7 @@
six six
rapidfuzz rapidfuzz
paramiko paramiko
packaging
]; ];
python-with-my-packages = pkgs.python3.withPackages my-python-packages; python-with-my-packages = pkgs.python3.withPackages my-python-packages;
in in
@ -202,7 +203,7 @@
# Set neovim to be used instead of less for viewing manpages # Set neovim to be used instead of less for viewing manpages
# MANPAGER = "nvim +Man!"; # MANPAGER = "nvim +Man!";
MANPAGER = "emacsclient -n"; MANPAGER = "emacsclient -c";
# Nicer terminal prompt # Nicer terminal prompt
PS1="\[\e[0;36m\]\u\[\e[0m\]@\[\e[0;33m\]\h\[\e[0m\]:\[\e[0;35m\]\w\[\e[0m\] \$ "; PS1="\[\e[0;36m\]\u\[\e[0m\]@\[\e[0;33m\]\h\[\e[0m\]:\[\e[0;35m\]\w\[\e[0m\] \$ ";

View File

@ -42,6 +42,7 @@ in
udiskie # Automounting drives udiskie # Automounting drives
dunst # Notification daemon dunst # Notification daemon
scrot # Screenshot tool
lxqt.pcmanfm-qt # File Manager lxqt.pcmanfm-qt # File Manager
lxqt.lxqt-archiver # Archiver lxqt.lxqt-archiver # Archiver
qt6Packages.qt6ct # Manage QT6 Themes qt6Packages.qt6ct # Manage QT6 Themes
@ -131,7 +132,7 @@ in
}; };
environment.sessionVariables = { environment.sessionVariables = {
EDITOR="emacsclient -n"; EDITOR="emacsclient -c";
QT_QPA_PLATFORMTHEME = "qt6ct"; QT_QPA_PLATFORMTHEME = "qt6ct";
SDL_VIDEODRIVER = "x11,windows"; SDL_VIDEODRIVER = "x11,windows";
_JAVA_AWT_WM_NONREPARENTING = "1"; _JAVA_AWT_WM_NONREPARENTING = "1";
@ -139,7 +140,7 @@ in
SSH_ASKPASS = "/run/current-system/sw/bin/lxqt-openssh-askpass"; SSH_ASKPASS = "/run/current-system/sw/bin/lxqt-openssh-askpass";
}; };
environment.variables = { environment.variables = {
EDITOR="emacsclient -n"; EDITOR="emacsclient -c";
QT_QPA_PLATFORMTHEME = "qt6ct"; QT_QPA_PLATFORMTHEME = "qt6ct";
SDL_VIDEODRIVER = "x11,windows"; SDL_VIDEODRIVER = "x11,windows";
_JAVA_AWT_WM_NONREPARENTING = "1"; _JAVA_AWT_WM_NONREPARENTING = "1";