mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
feat(nix): migrate the_silver_searcher
This commit is contained in:
@@ -13,7 +13,6 @@
|
|||||||
- ~/.gnupg
|
- ~/.gnupg
|
||||||
|
|
||||||
- link:
|
- link:
|
||||||
~/.ag: search/ag
|
|
||||||
~/.asdfrc: asdf/asdfrc
|
~/.asdfrc: asdf/asdfrc
|
||||||
~/.config/base16-shell: .base16-shell
|
~/.config/base16-shell: .base16-shell
|
||||||
~/.config/bat: bat
|
~/.config/bat: bat
|
||||||
|
|||||||
2
Brewfile
2
Brewfile
@@ -397,8 +397,6 @@ brew "superfile"
|
|||||||
brew "svgo"
|
brew "svgo"
|
||||||
# Open source continuous file synchronization application
|
# Open source continuous file synchronization application
|
||||||
brew "syncthing"
|
brew "syncthing"
|
||||||
# Code-search similar to ack
|
|
||||||
brew "the_silver_searcher"
|
|
||||||
# Text interface for Git repositories
|
# Text interface for Git repositories
|
||||||
brew "tig"
|
brew "tig"
|
||||||
# Simplified and community-driven man pages
|
# Simplified and community-driven man pages
|
||||||
|
|||||||
@@ -2,4 +2,3 @@
|
|||||||
log
|
log
|
||||||
tags
|
tags
|
||||||
tmp
|
tmp
|
||||||
|
|
||||||
11
nix/home/ag/default.nix
Normal file
11
nix/home/ag/default.nix
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
home.file.".ag" = {
|
||||||
|
source = ./ag;
|
||||||
|
};
|
||||||
|
|
||||||
|
home.packages = [
|
||||||
|
pkgs.silver-searcher
|
||||||
|
];
|
||||||
|
}
|
||||||
@@ -7,6 +7,7 @@ in
|
|||||||
# https://nix-community.github.io/home-manager/options.html
|
# https://nix-community.github.io/home-manager/options.html
|
||||||
imports = [
|
imports = [
|
||||||
./ack
|
./ack
|
||||||
|
./ag
|
||||||
./ripgrep
|
./ripgrep
|
||||||
./skhd
|
./skhd
|
||||||
./yabai
|
./yabai
|
||||||
|
|||||||
Reference in New Issue
Block a user