all repos — dotfiles @ 56ce967c615516e49830f4783c545066bc29a2e8

my *nix dotfiles

nix: alacritty: set fonts on linux
Anirudh Oppiliappan x@icyphox.sh
Sat, 22 Jun 2024 00:44:12 +0300
commit

56ce967c615516e49830f4783c545066bc29a2e8

parent

9cea53dd4a34114c3ebe2f404ff5b5238978fb4d

4 files changed, 5 insertions(+), 12 deletions(-)

jump to
M nvim/_init.luanvim/_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.luanvim/lua/lsp/copilot.lua

@@ -4,5 +4,3 @@ enabled = true,

auto_trigger = true, } } - -require 'CopilotChat'.setup {}
M programs/alacritty.nixprograms/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.nixprograms/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"