diff --git a/alacritty/.config/alacritty/alacritty.yml b/alacritty/.config/alacritty/alacritty.yml new file mode 100644 index 0000000..f96d411 --- /dev/null +++ b/alacritty/.config/alacritty/alacritty.yml @@ -0,0 +1,46 @@ +colors: + bright: + black: "#928374" + blue: "#83a598" + cyan: "#8ec07c" + green: "#b8bb26" + magenta: "#d3869b" + red: "#fb4934" + white: "#ebdbb2" + yellow: "#fabd2f" + normal: + black: "#282828" + blue: "#458588" + cyan: "#689d6a" + green: "#98971a" + magenta: "#b16286" + red: "#cc241d" + white: "#a89984" + yellow: "#d79921" + primary: + background: "#282828" + bg_darker: "#1d2021" + bg_lighter: "#3c3836" + foreground: "#ebdbb2" + +cursor: + style: "Block" + unfocused_hollow: true +font: + normal: { "family": "xos4 Terminus" } + offset: { "x": 0, "y": 0 } + size: 12 + +key_bindings: + - { "action": "SpawnNewInstance", "key": "N", "mods": "Control|Shift" } +live_config_reload: true +mouse: + double_click: { "threshold": 300 } + hide_when_typing: true + triple_click: { "threshold": 300 } + +window: + dynamic_padding: true + dynamic_title: true + padding: { "x": 20, "y": 20 } + opacity: 1 diff --git a/nixpkgs/.config/nixpkgs/modules/desktop.nix b/nixpkgs/.config/nixpkgs/modules/desktop.nix index d403335..b400f78 100644 --- a/nixpkgs/.config/nixpkgs/modules/desktop.nix +++ b/nixpkgs/.config/nixpkgs/modules/desktop.nix @@ -101,7 +101,7 @@ in xresources.properties = with config.elkowar.desktop.colors; { "Xcursor.size" = "16"; - "Xcursor.theme" = "capitaine-cursors-light"; + #"Xcursor.theme" = "capitaine-cursors-light"; "Xft.autohint" = "0"; "Xft.antialias" = "1"; "Xft.hinting" = "true"; diff --git a/nixpkgs/.config/nixpkgs/modules/desktop/alacritty.nix b/nixpkgs/.config/nixpkgs/modules/desktop/alacritty.nix index 50ab1cd..8e6a746 100644 --- a/nixpkgs/.config/nixpkgs/modules/desktop/alacritty.nix +++ b/nixpkgs/.config/nixpkgs/modules/desktop/alacritty.nix @@ -9,7 +9,7 @@ in config = lib.mkIf cfg.enable { programs.alacritty = { - enable = true; + enable = false; settings = { live_config_reload = true; diff --git a/nixpkgs/.config/nixpkgs/modules/desktop/gtk.nix b/nixpkgs/.config/nixpkgs/modules/desktop/gtk.nix index d18fbc8..52cfb52 100644 --- a/nixpkgs/.config/nixpkgs/modules/desktop/gtk.nix +++ b/nixpkgs/.config/nixpkgs/modules/desktop/gtk.nix @@ -31,6 +31,7 @@ in gtk-button-images = 1; #ctk-cursor-theme-name = "capitaine-cursors-light"; gtk-cursor-theme-size = 0; + gtk-cursor-theme-name="phinger-cursors-light"; }; gtk3.extraCss = '' diff --git a/nvim/.config/nvim/fnl/dots/plugins.fnl b/nvim/.config/nvim/fnl/dots/plugins.fnl index 78d9f27..b02ab8a 100644 --- a/nvim/.config/nvim/fnl/dots/plugins.fnl +++ b/nvim/.config/nvim/fnl/dots/plugins.fnl @@ -32,6 +32,11 @@ (use ; sort me pls + ;:vimwiki/vimwiki {:opt false + ;:config #(set vim.g.vimwiki_list [{:path "~/obsidian-stuff/obsidian-vault" + ;:syntax "markdown" + ;:ext "md"}])} + :github/copilot.vim {:opt true :cmd ["Copilot"]} :lervag/vimtex {:opt false diff --git a/nvim/.config/nvim/fnl/dots/plugins/lsp.fnl b/nvim/.config/nvim/fnl/dots/plugins/lsp.fnl index 54b699c..87edc30 100644 --- a/nvim/.config/nvim/fnl/dots/plugins/lsp.fnl +++ b/nvim/.config/nvim/fnl/dots/plugins/lsp.fnl @@ -87,15 +87,15 @@ ;(init-lsp :powershell_es {}) -;(init-lsp :clangd) +(init-lsp :clangd) ;(init-lsp :ccls) ;((. (require "grammar-guard") :init)) ;(init-lsp :grammar_guard {:cmd "~/.local/share/nvim/lsp_servers/ltex/ltex-ls/bin/ltex-ls" - ;:settings {:ltex {:enabled ["latex" "tex"] - ;:additionalRules {:motherTongue "de-DE"}}}}) + ;:settings {:ltex {:enabled ["latex" "tex"] + ;:additionalRules {:motherTongue "de-DE"}}}}) (init-lsp :cssls {:filestypes ["css" "scss" "less" "stylus"] diff --git a/nvim/.config/nvim/fnl/dots/plugins/ltex-ls.fnl b/nvim/.config/nvim/fnl/dots/plugins/ltex-ls.fnl index ce1ecde..98f1af2 100644 --- a/nvim/.config/nvim/fnl/dots/plugins/ltex-ls.fnl +++ b/nvim/.config/nvim/fnl/dots/plugins/ltex-ls.fnl @@ -9,7 +9,8 @@ (def latex-command-settings - {:dummy ["\\texttt{}" "\\scripture{}"]}) + {:dummy ["\\texttt{}" "\\scripture{}" "\\todo{}" "\\lstref{}" "\\personaltextcite{}" "\\personalparencite{}"] + :ignore ["\\urlfootnote{}"]}) diff --git a/zsh/.config/zsh/.zshrc b/zsh/.config/zsh/.zshrc index d0c717b..9ea124f 100644 --- a/zsh/.config/zsh/.zshrc +++ b/zsh/.config/zsh/.zshrc @@ -111,3 +111,6 @@ alias ls="exa --icons" # load prompt source "$ZDOTDIR/prompt.zsh" +if command -v direnv >/dev/null; then + eval "$(direnv hook zsh)" +fi