feat(nvim): version 0.10
This commit is contained in:
parent
02e704a1ba
commit
f6b5823194
3 changed files with 24 additions and 3 deletions
|
@ -1,6 +1,11 @@
|
|||
# cli programs should be available on servers and desktop
|
||||
{ pkgs, ... }:
|
||||
|
||||
{ config, pkgs, ... }:
|
||||
let
|
||||
unstable = import
|
||||
(builtins.fetchTarball https://github.com/nixos/nixpkgs/tarball/7afa2c97ebb0585d00c64c112344483e89e00545)
|
||||
# reuse the current configuration
|
||||
{ config = config.nixpkgs.config; };
|
||||
in
|
||||
{
|
||||
programs.zsh.enable = true;
|
||||
programs.fzf = {
|
||||
|
@ -8,6 +13,14 @@
|
|||
keybindings = true;
|
||||
};
|
||||
|
||||
# programs.neovim = {
|
||||
# enable = true;
|
||||
# defaultEditor = true;
|
||||
# package = unstable.neovim;
|
||||
# viAlias = true;
|
||||
# vimAlias = true;
|
||||
# };
|
||||
|
||||
# List packages installed in system profile. To search, run:
|
||||
# $ nix search wget
|
||||
environment.systemPackages = with pkgs; [
|
||||
|
@ -41,6 +54,7 @@
|
|||
mpc-cli
|
||||
mpd
|
||||
neofetch
|
||||
unstable.neovim
|
||||
ollama
|
||||
pandoc
|
||||
pass
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue