nix: alacritty: set fonts on linux
Anirudh Oppiliappan x@icyphox.sh
Sat, 22 Jun 2024 00:44:12 +0300
4 files changed,
5 insertions(+),
12 deletions(-)
M
nvim/_init.lua
→
nvim/_init.lua
@@ -24,13 +24,6 @@
-- plugins not in nixpkgs require 'packer'.startup(function(use) use 'preservim/vim-textobj-quote' - use { - 'CopilotC-Nvim/CopilotChat.nvim', - branch = 'canary', - requires = { - 'nvim-lua/plenary.nvim', - }, - } end) require 'dapx'
M
nvim/lua/lsp/copilot.lua
→
nvim/lua/lsp/copilot.lua
@@ -4,5 +4,3 @@ enabled = true,
auto_trigger = true, } } - -require 'CopilotChat'.setup {}
M
programs/alacritty.nix
→
programs/alacritty.nix
@@ -15,7 +15,9 @@ size = 15.0;
offset.y = 5; } else { - normal = "Input"; + normal = { family = "Input"; style = "Regular"; }; + bold = { family = "Input"; style = "Bold"; }; + italic = { family = "Input"; style = "Italic"; }; size = 12.0; }; in
M
programs/tmux.nix
→
programs/tmux.nix
@@ -93,8 +93,8 @@ # dim inactive pane
set -g window-style 'fg=color8,bg=default' set -g window-active-style 'fg=color7,bg=default' - set -g terminal-overrides ',xterm-256color:Tc' - set -g default-terminal "tmux-256color" + set -g default-terminal "xterm-256color" + set -ga terminal-overrides ',xterm-256color:Tc' set -as terminal-overrides ',xterm*:sitm=\E[3m' set -g default-shell "/etc/profiles/per-user/icy/bin/fish"