diff --git a/common/nvim/init.lua b/common/nvim/init.lua index 0815725..5491b53 100644 --- a/common/nvim/init.lua +++ b/common/nvim/init.lua @@ -625,6 +625,7 @@ require("lazy").setup({ local luasnip = require("luasnip") luasnip.config.setup({}) + require("luasnip.loaders.from_vscode").lazy_load() cmp.setup({ snippet = { expand = function(args) @@ -777,6 +778,5 @@ require("lazy").setup({ -- For additional information see: :help lazy.nvim-lazy.nvim-structuring-your-plugins -- { import = 'custom.plugins' }, }, {}) -require("luasnip.loaders.from_vscode").lazy_load() -- The line beneath this is called `modeline`. See `:help modeline` -- vim: ts=2 sts=2 sw=2 et diff --git a/hosts/default/configuration.nix b/hosts/default/configuration.nix index 547375a..8c326c6 100644 --- a/hosts/default/configuration.nix +++ b/hosts/default/configuration.nix @@ -45,9 +45,6 @@ networking = { hostName = "lambdaOS"; # Define your hostname. - extraHosts = '' - ::1 noa.voorwaarts.nl - ''; }; # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. diff --git a/hosts/default/home.nix b/hosts/default/home.nix index d2b6f56..b4881af 100644 --- a/hosts/default/home.nix +++ b/hosts/default/home.nix @@ -65,6 +65,8 @@ go nodejs opam + stack + localsend ]; diff --git a/modules/applications/zsh.nix b/modules/applications/zsh.nix index 28fb285..3cad395 100644 --- a/modules/applications/zsh.nix +++ b/modules/applications/zsh.nix @@ -21,6 +21,9 @@ in lt = "lsd -l --tree"; update = "nix flake update --commit-lock-file $HOME/nixos && sudo nixos-rebuild switch --flake $HOME/nixos"; }; + initExtra = '' + [[ ! -r /home/noa/.opam/opam-init/init.zsh ]] || source /home/noa/.opam/opam-init/init.zsh > /dev/null 2> /dev/null + ''; history = { path = "${config.xdg.dataHome}/zsh/history"; size = 10000;