From b9d5a6ae7a959430dfdb27bf9a586223b740ca47 Mon Sep 17 00:00:00 2001 From: Florian Schmitt Date: Mon, 13 May 2024 15:16:15 +0300 Subject: [PATCH] tokei, nix-command, nvim config --- dotfiles/nvim/lua/plugins/mrflos.lua | 12 ++++++++++++ modules/console.nix | 1 + modules/nixos.nix | 2 ++ 3 files changed, 15 insertions(+) diff --git a/dotfiles/nvim/lua/plugins/mrflos.lua b/dotfiles/nvim/lua/plugins/mrflos.lua index 8765ec4..d92a633 100644 --- a/dotfiles/nvim/lua/plugins/mrflos.lua +++ b/dotfiles/nvim/lua/plugins/mrflos.lua @@ -87,6 +87,18 @@ return { }, }, }, + { + "neovim/nvim-lspconfig", + opts = { + intelephense = { + environment = { + includePaths = { + "/home/mrflos/Developpements/yeswiki", + }, + }, + }, + }, + }, { "nvim-telescope/telescope.nvim", opts = { diff --git a/modules/console.nix b/modules/console.nix index c982feb..f2bbdde 100644 --- a/modules/console.nix +++ b/modules/console.nix @@ -66,6 +66,7 @@ starship syncthing tmux + tokei tree unzip usbutils diff --git a/modules/nixos.nix b/modules/nixos.nix index 64254bd..9e6c38f 100644 --- a/modules/nixos.nix +++ b/modules/nixos.nix @@ -4,6 +4,8 @@ enable = true; }; + nix.settings.experimental-features = [ "nix-command" ]; + # Automatic Garbage Collection nix.gc = { automatic = true;