Fix editor var, add new python package for lsp-bridge update
This commit is contained in:
parent
22e1cd672b
commit
56a075687a
|
|
@ -53,7 +53,7 @@
|
|||
};
|
||||
|
||||
home.sessionVariables = {
|
||||
EDITOR = "emacsclient -n";
|
||||
EDITOR = "emacsclient -c";
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -314,7 +314,7 @@ fi
|
|||
];
|
||||
|
||||
home.sessionVariables = {
|
||||
EDITOR = "emacsclient -n";
|
||||
EDITOR = "emacsclient -c";
|
||||
# EDITOR = "nvim";
|
||||
|
||||
# Dotnet path not found fix
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@
|
|||
six
|
||||
rapidfuzz
|
||||
paramiko
|
||||
packaging
|
||||
];
|
||||
python-with-my-packages = pkgs.python3.withPackages my-python-packages;
|
||||
in
|
||||
|
|
@ -202,7 +203,7 @@
|
|||
|
||||
# Set neovim to be used instead of less for viewing manpages
|
||||
# MANPAGER = "nvim +Man!";
|
||||
MANPAGER = "emacsclient -n";
|
||||
MANPAGER = "emacsclient -c";
|
||||
|
||||
# Nicer terminal prompt
|
||||
PS1="\[\e[0;36m\]\u\[\e[0m\]@\[\e[0;33m\]\h\[\e[0m\]:\[\e[0;35m\]\w\[\e[0m\] \$ ";
|
||||
|
|
|
|||
|
|
@ -42,6 +42,7 @@ in
|
|||
udiskie # Automounting drives
|
||||
dunst # Notification daemon
|
||||
|
||||
scrot # Screenshot tool
|
||||
lxqt.pcmanfm-qt # File Manager
|
||||
lxqt.lxqt-archiver # Archiver
|
||||
qt6Packages.qt6ct # Manage QT6 Themes
|
||||
|
|
@ -131,7 +132,7 @@ in
|
|||
};
|
||||
|
||||
environment.sessionVariables = {
|
||||
EDITOR="emacsclient -n";
|
||||
EDITOR="emacsclient -c";
|
||||
QT_QPA_PLATFORMTHEME = "qt6ct";
|
||||
SDL_VIDEODRIVER = "x11,windows";
|
||||
_JAVA_AWT_WM_NONREPARENTING = "1";
|
||||
|
|
@ -139,7 +140,7 @@ in
|
|||
SSH_ASKPASS = "/run/current-system/sw/bin/lxqt-openssh-askpass";
|
||||
};
|
||||
environment.variables = {
|
||||
EDITOR="emacsclient -n";
|
||||
EDITOR="emacsclient -c";
|
||||
QT_QPA_PLATFORMTHEME = "qt6ct";
|
||||
SDL_VIDEODRIVER = "x11,windows";
|
||||
_JAVA_AWT_WM_NONREPARENTING = "1";
|
||||
|
|
|
|||
Loading…
Reference in New Issue