Skip to content

Commit

Permalink
updates from computer migration
Browse files Browse the repository at this point in the history
  • Loading branch information
btkostner committed Sep 6, 2024
1 parent e9ac7a7 commit 4e61f24
Show file tree
Hide file tree
Showing 9 changed files with 151 additions and 322 deletions.
2 changes: 1 addition & 1 deletion .chezmoiignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
.github
LICENSE
README.MD
README.md
6 changes: 6 additions & 0 deletions dot_config/alacritty/alacritty.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,11 @@ dynamic_padding = true

decorations = "Transparent"

[keyboard]
bindings = [
{ key = "T", mods = "Command", action = "CreateNewtab" },
{ key = "N", mods = "Control|Shift", action = "CreateNewWindow" }
]

[shell]
program = "/opt/homebrew/bin/nu"
3 changes: 3 additions & 0 deletions dot_config/mise/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,6 @@ act = "latest"
elixir = "latest"
erlang = "latest"
zig = "latest"
rust = "latest"
go = "latest"
buf = "latest"
61 changes: 61 additions & 0 deletions dot_config/zed/private_settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
// Zed settings
//
// For information on how to configure Zed, see the Zed
// documentation: https://zed.dev/docs/configuring-zed
//
// To see all of Zed's default settings without changing your
// custom settings, run the `open default settings` command
// from the command palette or from `Zed` application menu.
{
"language_models": {
"anthropic": {
"version": "1"
}
},
"assistant": {
"default_model": {
"provider": "anthropic",
"model": "claude-3-5-sonnet-20240620"
},
"version": "2",
"provider": null
},
"buffer_font_size": 16,
"elixir": {
// Change the LSP zed uses for elixir.
// Note that changing this setting requires a restart of Zed
// to take effect.
//
// May take 3 values:
// 1. Use the standard ElixirLS, this is the default
// "lsp": "elixir_ls"
// 2. Use the experimental NextLs
// "lsp": "next_ls",
// 3. Use a language server installed locally on your machine:
// "lsp": {
// "local": {
// "path": "~/next-ls/bin/start",
// "arguments": ["--stdio"]
// }
// },
//
"lsp": "elixir_ls"
},
"terminal": {
"detect_venv": {
"on": {
"activate_script": "nushell"
}
},
"line_height": "standard",
"shell": {
"program": "nu"
}
},
"theme": "One Dark",
"ui_font_features": {
// Disable ligatures:
"calt": true
},
"ui_font_size": 16
}
8 changes: 8 additions & 0 deletions dot_ssh/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Host *
IdentityAgent "~/Library/Group Containers/2BUA8C4S2C.com.1password/t/agent.sock"

Host github.com
Hostname ssh.github.com
Port 443


Loading

0 comments on commit 4e61f24

Please sign in to comment.