Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Disable fish ssh-agent, fix nvim plugin config

+7 -7
+6 -6
fish/config.fish
··· 32 32 # PATH stuff 33 33 34 34 # Run ssh-agent 35 - if test -z "(pgrep ssh-agent)" 36 - eval (ssh-agent -c) > /dev/null # no output 37 - set -Ux SSH_AUTH_SOCK $SSH_AUTH_SOCK 38 - set -Ux SSH_AGENT_PID $SSH_AGENT_PID 39 - set -Ux SSH_AUTH_SOCK $SSH_AUTH_SOCK 40 - end 35 + #if test -z "(pgrep ssh-agent)" 36 + # eval (ssh-agent -c) > /dev/null # no output 37 + # set -Ux SSH_AUTH_SOCK $SSH_AUTH_SOCK 38 + # set -Ux SSH_AGENT_PID $SSH_AGENT_PID 39 + # set -Ux SSH_AUTH_SOCK $SSH_AUTH_SOCK 40 + #end 41 41 42 42 if type -q "direnv" 43 43 direnv hook fish | source
+1 -1
nvim/lua/plugins.lua
··· 376 376 end, 377 377 dependencies = { "nvim-lua/plenary.nvim" } 378 378 }, 379 - { "mfussenegger/nvim-dap", lazy = true, ft = { "c", "rust" }, config = true }, 379 + { "mfussenegger/nvim-dap", lazy = true, ft = { "c", "rust" } }, 380 380 { 381 381 "saecki/crates.nvim", 382 382 tag = "v0.4.0",