Add extra packages from env, fix formatting exclusion
This commit is contained in:
parent
5bda8341ea
commit
4c06dc6b45
|
@ -3,7 +3,9 @@ local lsp_formatting = function(bufnr)
|
||||||
bufnr = bufnr,
|
bufnr = bufnr,
|
||||||
timeout_ms = 2000,
|
timeout_ms = 2000,
|
||||||
async = true,
|
async = true,
|
||||||
filter = function(client) return client.name == "null-ls" end,
|
filter = function(client)
|
||||||
|
return client.name ~= "jedi_language_server" and client.name ~= "lua_ls"
|
||||||
|
end,
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
return lsp_formatting
|
return lsp_formatting
|
||||||
|
|
6
nixos/home-manager/env/rofi.nix
vendored
6
nixos/home-manager/env/rofi.nix
vendored
|
@ -1,4 +1,4 @@
|
||||||
{ ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
programs.rofi = {
|
programs.rofi = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -6,4 +6,8 @@
|
||||||
pass.enable = true;
|
pass.enable = true;
|
||||||
terminal = "kitty";
|
terminal = "kitty";
|
||||||
};
|
};
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
i3lock
|
||||||
|
scrot
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
1
nixos/home-manager/env/sxhkd.nix
vendored
1
nixos/home-manager/env/sxhkd.nix
vendored
|
@ -5,7 +5,6 @@
|
||||||
keybindings = {
|
keybindings = {
|
||||||
# Terminal emulators
|
# Terminal emulators
|
||||||
"super + Return" = "kitty";
|
"super + Return" = "kitty";
|
||||||
"super + n" = "kitty -e \"nvim\"";
|
|
||||||
"super + shift + Return" = "xfce4-terminal --drop-down";
|
"super + shift + Return" = "xfce4-terminal --drop-down";
|
||||||
|
|
||||||
# Launcher
|
# Launcher
|
||||||
|
|
|
@ -69,7 +69,7 @@ symbol = " "
|
||||||
symbol = "⌘ "
|
symbol = "⌘ "
|
||||||
|
|
||||||
[hostname]
|
[hostname]
|
||||||
ssh_symbol = "🖥 "
|
ssh_symbol = "🌐"
|
||||||
style = "bold green"
|
style = "bold green"
|
||||||
|
|
||||||
[hg_branch]
|
[hg_branch]
|
||||||
|
|
Loading…
Reference in a new issue