Improve configs
fixes, replace exa with eza, update home-manager version
This commit is contained in:
parent
de0663730c
commit
ccb5e6660e
13 changed files with 80 additions and 89 deletions
|
@ -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
|
||||
'';
|
||||
};
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue