mirror of
https://codeberg.org/leana8959/.files.git
synced 2026-02-01 14:39:39 +00:00
Compare commits
3 commits
adfaa92587
...
34775054b2
| Author | SHA1 | Date | |
|---|---|---|---|
| 34775054b2 | |||
| 6b0c07505c | |||
| 4369b68051 |
3 changed files with 11 additions and 4 deletions
|
|
@ -17,6 +17,8 @@
|
||||||
pkgs.nixpkgs-review
|
pkgs.nixpkgs-review
|
||||||
pkgs.shellcheck
|
pkgs.shellcheck
|
||||||
|
|
||||||
|
pkgs.fx # json viewer
|
||||||
|
|
||||||
pkgs.lua-language-server
|
pkgs.lua-language-server
|
||||||
pkgs.stylua # lua
|
pkgs.stylua # lua
|
||||||
pkgs.nil # nix
|
pkgs.nil # nix
|
||||||
|
|
|
||||||
|
|
@ -242,11 +242,16 @@ myStartupHook = do
|
||||||
spawn "dbus-update-activation-environment DISPLAY XAUTHORITY WAYLAND_DISPLAY"
|
spawn "dbus-update-activation-environment DISPLAY XAUTHORITY WAYLAND_DISPLAY"
|
||||||
|
|
||||||
io $ do
|
io $ do
|
||||||
|
let setEnv' k v = setEnv k v False
|
||||||
-- This is done here because:
|
-- This is done here because:
|
||||||
-- - setting `home.sessionVariable` (home-manager) would only effect shells, probably due to the order of launched processes blah blah
|
-- - setting `home.sessionVariable` (home-manager) would only effect shells because xmonad is configured with NixOS modules
|
||||||
-- - setting `environment.sessionVariables` (NixOS) would make my set up less portable
|
-- - setting `environment.sessionVariables` (NixOS) would make my set up less portable
|
||||||
putEnv "GLFW_IM_MODULE=ibus" -- Make sure kitty knows how to talk to fcitx
|
setEnv' "GTK_IM_MODULE" "fcitx"
|
||||||
putEnv "MOZ_USE_XINPUT2=1" -- Force touchpad for firefox
|
setEnv' "QT_IM_MODULE" "fcitx"
|
||||||
|
setEnv' "XMODIFIERS" "@im=fcitx"
|
||||||
|
setEnv' "GLFW_IM_MODULE" "ibus"
|
||||||
|
|
||||||
|
setEnv' "MOZ_USE_XINPUT2" "1" -- Force touchpad for firefox
|
||||||
|
|
||||||
removedKeybinds :: [(KeyMask, KeySym)]
|
removedKeybinds :: [(KeyMask, KeySym)]
|
||||||
removedKeybinds =
|
removedKeybinds =
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ set -g default-terminal "tmux-256color" # enable italics
|
||||||
set -g base-index 1 # start counting pane number from 1
|
set -g base-index 1 # start counting pane number from 1
|
||||||
set -g renumber-windows on # auto reorder window number
|
set -g renumber-windows on # auto reorder window number
|
||||||
set -g mode-keys vi # global vi mode
|
set -g mode-keys vi # global vi mode
|
||||||
set -g history-limit 10000 # I want more history
|
set -g history-limit 1000000 # I want more history
|
||||||
|
|
||||||
# Display style
|
# Display style
|
||||||
set -g @FG "#000000"
|
set -g @FG "#000000"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue