aboutsummaryrefslogtreecommitdiff
path: root/config/terminator
diff options
context:
space:
mode:
authorKenny Ballou <kballou@devnulllabs.io>2020-10-14 10:05:44 -0600
committerKenny Ballou <kballou@devnulllabs.io>2020-12-15 14:04:46 -0700
commit418ec7b94aa8202e5f5f0a59f2bb97a7c0510068 (patch)
tree0a08e1653ba5d8efc527bbaf4e5914ffb9c8b6b9 /config/terminator
parent164cd37871e6235584ce23f3a0bf516a51b31489 (diff)
downloaddotfiles-418ec7b94aa8202e5f5f0a59f2bb97a7c0510068.tar.gz
dotfiles-418ec7b94aa8202e5f5f0a59f2bb97a7c0510068.tar.xz
dots: now for something completely different
Use home-manager to configure user packages, dotfiles, and various other configurations. Add home-manager configuration for installing and managing user packages and profiles. Convert nearly all configuration to use home-manager to install and link configuration files. In no particular order of reference, I've used and/or referenced the following configurations and posts for this homeification: [[0], [1], [2], [3], [4], [5], [6], [7], [8], [9], [10]]. [0]: https://gitlab.com/NobbZ/nix-home-manager-dotfiles [1]: https://www.malloc47.com/migrating-to-nixos/ [2]: https://lucperkins.dev/blog/home-manager/ [3]: https://github.com/jwiegley/nix-config [4]: https://www.thedroneely.com/posts/declarative-user-package-management-in-nixos/ [5]: https://hugoreeves.com/posts/2019/nix-home/ [6]: https://rycee.gitlab.io/home-manager/ [7]: https://rycee.net/posts/2017-07-02-manage-your-home-with-nix.html [8]: https://github.com/abcdw/rde [9]: https://github.com/ryantm/dotfiles [10]: https://git.sr.ht/~vdemeester/home Signed-off-by: Kenny Ballou <kballou@devnulllabs.io>
Diffstat (limited to 'config/terminator')
-rw-r--r--config/terminator/config40
-rw-r--r--config/terminator/default.nix7
2 files changed, 47 insertions, 0 deletions
diff --git a/config/terminator/config b/config/terminator/config
new file mode 100644
index 00000000..d2226930
--- /dev/null
+++ b/config/terminator/config
@@ -0,0 +1,40 @@
+[global_config]
+ enabled_plugins = ,
+ title_hide_sizetext = True
+ title_transmit_bg_color = "#c800ae"
+[keybindings]
+ help = None
+ switch_to_tab_1 = None
+ switch_to_tab_10 = None
+ switch_to_tab_2 = None
+ switch_to_tab_3 = None
+ switch_to_tab_4 = None
+ switch_to_tab_5 = None
+ switch_to_tab_6 = None
+ switch_to_tab_7 = None
+ switch_to_tab_8 = None
+ switch_to_tab_9 = None
+[layouts]
+ [[default]]
+ [[[child1]]]
+ parent = window0
+ profile = default
+ type = Terminal
+ [[[window0]]]
+ parent = ""
+ type = Window
+[plugins]
+[profiles]
+ [[default]]
+ background_color = "#3f3f3f"
+ cursor_color = "#dcdcdc"
+ custom_command = env TERM=xterm-256color zsh
+ font = DejaVu Sans Mono 10
+ foreground_color = "#dcdcdc"
+ palette = "#3f3f3f:#cc9393:#7f9f7f:#e3ceab:#dfaf8f:#cc9393:#8cd0d3:#dcdccc:#040404:#cc9393:#7f9f7f:#e3ceab:#dfaf8f:#cc9393:#8cd0d3:#dcdccc"
+ scrollback_infinite = True
+ scrollbar_position = hidden
+ show_titlebar = False
+ urgent_bell = True
+ use_custom_command = True
+ use_system_font = False
diff --git a/config/terminator/default.nix b/config/terminator/default.nix
new file mode 100644
index 00000000..c0b00027
--- /dev/null
+++ b/config/terminator/default.nix
@@ -0,0 +1,7 @@
+{ pkgs, config, ... }:
+{
+ xdg.configFile.terminator = {
+ source = ./config;
+ target = "terminator/config";
+ };
+}