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,
|
||||
timeout_ms = 2000,
|
||||
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
|
||||
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 = {
|
||||
enable = true;
|
||||
|
@ -6,4 +6,8 @@
|
|||
pass.enable = true;
|
||||
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 = {
|
||||
# Terminal emulators
|
||||
"super + Return" = "kitty";
|
||||
"super + n" = "kitty -e \"nvim\"";
|
||||
"super + shift + Return" = "xfce4-terminal --drop-down";
|
||||
|
||||
# Launcher
|
||||
|
|
|
@ -69,7 +69,7 @@ symbol = " "
|
|||
symbol = "⌘ "
|
||||
|
||||
[hostname]
|
||||
ssh_symbol = "🖥 "
|
||||
ssh_symbol = "🌐"
|
||||
style = "bold green"
|
||||
|
||||
[hg_branch]
|
||||
|
|
Loading…
Reference in a new issue