Improve configs

fixes, replace exa with eza, update home-manager version
This commit is contained in:
Tobias Reisinger 2023-09-10 21:41:00 +02:00
parent de0663730c
commit ccb5e6660e
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
13 changed files with 80 additions and 89 deletions

View file

@ -1,16 +1,15 @@
{ config, pkgs, ... }:
{
# Packages that should be installed to the user profile.
home.packages = with pkgs; [
nodejs # needed for lsp
fzf # fuzzy finder
#neovim # alternative to vim
];
# Packages that should be installed to the user profile.
home.packages = with pkgs; [
nodejs # needed for lsp
fzf # fuzzy finder
];
programs.neovim = {
enable = true;
extraLuaConfig = ''
programs.neovim = {
enable = true;
extraLuaConfig = ''
require("set")
require("remap")
require("plugins")
@ -20,6 +19,6 @@ local status, ts_install = pcall(require, "nvim-treesitter.install")
if(status) then
ts_install.compilers = { "${pkgs.gcc}/bin/gcc" }
end
'';
};
'';
};
}