Add zed and wezterm config
This commit is contained in:
parent
8ad8a313ec
commit
ebd6f1f9c0
@ -201,7 +201,7 @@ tab_bar_style separator
|
|||||||
|
|
||||||
tab_separator " ┇"
|
tab_separator " ┇"
|
||||||
|
|
||||||
shell /usr/local/bin/fish
|
shell {{ .shell }}
|
||||||
|
|
||||||
#: The shell program to execute. The default value of . means to use
|
#: The shell program to execute. The default value of . means to use
|
||||||
#: whatever shell is set as the default shell for the current user.
|
#: whatever shell is set as the default shell for the current user.
|
||||||
|
12
dot_config/wezterm/wezterm.lua.tmpl
Normal file
12
dot_config/wezterm/wezterm.lua.tmpl
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
-- Pull in the wezterm API
|
||||||
|
local wezterm = require("wezterm")
|
||||||
|
|
||||||
|
-- This will hold the configuration.
|
||||||
|
local config = wezterm.config_builder()
|
||||||
|
|
||||||
|
-- This is where you actually apply your config choices
|
||||||
|
config.color_scheme = "GruvboxDarkHard"
|
||||||
|
config.font = wezterm.font("BrutalistMono Nerd Font")
|
||||||
|
|
||||||
|
-- and finally, return the configuration to wezterm
|
||||||
|
return config
|
23
dot_config/zed/private_settings.json
Normal file
23
dot_config/zed/private_settings.json
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
// 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 `zed: Open Default Settings` command
|
||||||
|
// from the command palette
|
||||||
|
{
|
||||||
|
"telemetry": {
|
||||||
|
"diagnostics": true,
|
||||||
|
"metrics": false
|
||||||
|
},
|
||||||
|
"vim_mode": true,
|
||||||
|
"ui_font_size": 12,
|
||||||
|
"buffer_font_family": "BrutalistMono Nerd Font",
|
||||||
|
"buffer_font_size": 12,
|
||||||
|
"theme": {
|
||||||
|
"mode": "system",
|
||||||
|
"dark": "Gruvbox Dark Hard",
|
||||||
|
"light": "Gruvbox Dark Hard"
|
||||||
|
}
|
||||||
|
}
|
@ -31,7 +31,7 @@ export EDITOR='nvim'
|
|||||||
export GOPATH=$HOME/go
|
export GOPATH=$HOME/go
|
||||||
export GPG_TTY=$(tty)
|
export GPG_TTY=$(tty)
|
||||||
{{- if eq .chezmoi.os "openbsd" }}
|
{{- if eq .chezmoi.os "openbsd" }}
|
||||||
export CC='clang-16'
|
export CC='clang'
|
||||||
export PORTSDIR_PATH=/usr/ports/:/usr/ports/openbsd-wip
|
export PORTSDIR_PATH=/usr/ports/:/usr/ports/openbsd-wip
|
||||||
export PATH="$HOME/perl5/bin:$HOME/gems/bin:$HOME/.cargo/bin:$HOME/.local/bin:$PATH"
|
export PATH="$HOME/perl5/bin:$HOME/gems/bin:$HOME/.cargo/bin:$HOME/.local/bin:$PATH"
|
||||||
export PERL5LIB=$HOME/perl5/lib/perl5
|
export PERL5LIB=$HOME/perl5/lib/perl5
|
||||||
|
Loading…
Reference in New Issue
Block a user