1
Fork 0
This commit is contained in:
caem 2024-06-16 23:32:16 +02:00
parent 4407858140
commit bb5a75e153
Signed by: caem
GPG key ID: 69A830D03203405F
2 changed files with 12 additions and 2 deletions

View file

@ -1,4 +1,10 @@
return function()
require"lspconfig".basedpyright.setup {}
require"lspconfig".basedpyright.setup {
settings = {
python = {
pythonPath = vim.fn.exepath("python3"),
},
},
}
end

View file

@ -1,4 +1,4 @@
{ ... }:
{ pkgs, ... }:
{
home.username = "i";
@ -19,6 +19,10 @@
./packages/neovim.nix
];
home.packages = with pkgs; [
act
];
programs.home-manager.enable = true;
}