Skip to content
This repository has been archived by the owner on Jul 20, 2024. It is now read-only.

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
takeokunn committed Dec 23, 2023
1 parent 12960bd commit 01d5d0e
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 4 deletions.
12 changes: 8 additions & 4 deletions modules/fish/conf.d/mac.fish
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ end

if test (uname) = "Darwin"
# libgccjit
set -x NATIVE_FULL_AOT 1
set -gx NATIVE_FULL_AOT 1

# editor
set -x EDITOR "emacs -nw"
set -x HOMEBREW_EDITOR "emacs -nw"
set -gx EDITOR "emacs -nw"
set -gx HOMEBREW_EDITOR "emacs -nw"

# path
fish_add_path /usr/local/sbin
Expand All @@ -50,5 +50,9 @@ if test (uname) = "Darwin"

# emacs
alias emacs 'emacs -nw'
set -xg LSP_USE_PLISTS true
set -gx LSP_USE_PLISTS true

# compiler
set -gx C clang
set -gx CXX clang++
end
1 change: 1 addition & 0 deletions modules/fish/conf.d/nix.fish
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ end

if type -q nix
set -x NIXPKGS_ALLOW_UNFREE 1
set -x NIXPKGS_ALLOW_INSECURE 1
end
3 changes: 3 additions & 0 deletions modules/fish/conf.d/roswell.fish
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
if type -q ros
fish_add_path $HOME/.roswell/bin
end
27 changes: 27 additions & 0 deletions modules/nix/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@

home.packages = with pkgs; [
# for lanaguage
clojure
deno
gauche
go
guile
jsonnet
lua
Expand All @@ -23,6 +25,13 @@
vlang
zig

# for language specific
tfsec
tflint
tfupdate
terraform-ls
php83Packages.composer

# for gnupg
pinentry
gnupg22
Expand All @@ -32,20 +41,30 @@
automake
binutils
bison
boost
cmake
coreutils
gnutls
icu
libcxx
libcxxrt
libgccjit
libiconv
libllvm
libmng
libpng
librsvg
libxml2
libzip
meson
pkg-config
stunnel
sqldef
texinfo

# for essential tools
bat
csvq
eza
fd
fzf
Expand All @@ -55,6 +74,7 @@
htop
jq
peco
pv
ripgrep
rlwrap
tmux
Expand All @@ -63,8 +83,10 @@

# for basic tools
actionlint
awscli
bettercap
exiftool
extract_url
direnv
ffmpeg
gping
Expand All @@ -84,9 +106,13 @@
sqlite
terminal-notifier
tig
tokei
unixtools.procps
unixtools.watch

# for editor
emacs
editorconfig-core-c
micro
nano
neovim
Expand All @@ -101,6 +127,7 @@

# for jokes
asciiquarium
cmatrix
gibo
sl

Expand Down

0 comments on commit 01d5d0e

Please sign in to comment.