Improve neovim-specific configs
This commit is contained in:
parent
531786f609
commit
0b63872d62
7 changed files with 29 additions and 1 deletions
|
@ -7,6 +7,7 @@
|
|||
dasel # tool to manage yq, jq, toml and more
|
||||
direnv # tool to load custom environments
|
||||
docker-credential-helpers
|
||||
doggo # dns client
|
||||
exa # ls-alternative
|
||||
faas-cli # cli for openfaas
|
||||
fzf # fuzzy finder
|
||||
|
|
10
.config/home-manager/nvim.nix
Normal file
10
.config/home-manager/nvim.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{ 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
|
||||
];
|
||||
}
|
|
@ -7,6 +7,7 @@
|
|||
imports = [
|
||||
./common.nix
|
||||
./graphical.nix
|
||||
./nvim.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue