Skip to content

Commit

Permalink
feat(helix staff):
Browse files Browse the repository at this point in the history
  • Loading branch information
bresilla committed Apr 30, 2023
1 parent 26c0f55 commit 7bb6c1d
Show file tree
Hide file tree
Showing 20 changed files with 522 additions and 362 deletions.
1 change: 1 addition & 0 deletions .aliases
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ alias zero='doas zerotier-cli'
alias sshm='doas manssh -f /etc/ssh/ssh_config'
alias ssm='manssh'
alias blue='bluetoothctl'
alias vul="vultr-cli --config /home/bresilla/.config/vultr/vultr-cli.yaml"

##ALTERNATIVES
alias vim='nvim'
Expand Down
1 change: 0 additions & 1 deletion .config/alacritty/alacritty.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ font:
offset:
x: 0
y: 0
use_thin_strokes: true

# colors:
# primary:
Expand Down
22 changes: 11 additions & 11 deletions .config/bin/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@
"/env/bin/fx": {
"path": "/env/bin/fx",
"remote_name": "fx",
"version": "24.0.0",
"version": "24.1.0",
"hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
"url": "github.com/antonmedv/fx",
"provider": "github",
"url": "https://github.com/antonmedv/fx/releases/tag/24.1.0",
"provider": "",
"package_path": ""
},
"/env/bin/hck": {
Expand Down Expand Up @@ -139,10 +139,10 @@
"/env/bin/nostromo": {
"path": "/env/bin/nostromo",
"remote_name": "nostromo",
"version": "v0.11.4",
"version": "v0.12.0",
"hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
"url": "github.com/pokanop/nostromo",
"provider": "github",
"url": "https://github.com/pokanop/nostromo/releases/tag/v0.12.0",
"provider": "",
"package_path": "nostromo"
},
"/env/bin/pacaptr": {
Expand Down Expand Up @@ -238,10 +238,10 @@
"/env/bin/wireproxy": {
"path": "/env/bin/wireproxy",
"remote_name": "wireproxy",
"version": "v1.0.3",
"version": "v1.0.5",
"hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
"url": "https://github.com/octeep/wireproxy",
"provider": "github",
"url": "https://github.com/pufferffish/wireproxy/releases/tag/v1.0.5",
"provider": "",
"package_path": "wireproxy"
},
"/env/bin/xh": {
Expand All @@ -265,9 +265,9 @@
"/env/bin/zoxide": {
"path": "/env/bin/zoxide",
"remote_name": "zoxide",
"version": "v0.8.2",
"version": "v0.9.0",
"hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
"url": "https://github.com/ajeetdsouza/zoxide/releases/tag/v0.8.2",
"url": "https://github.com/ajeetdsouza/zoxide/releases/tag/v0.9.0",
"provider": "",
"package_path": "zoxide"
}
Expand Down
2 changes: 1 addition & 1 deletion .config/btops/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# there are 10 desktops present. Empty desktops
# will be removed until there are 5 remaining.

min = 5
min = 6
max = 10
remove-empty = true
append-when-occupied = true
Expand Down
12 changes: 11 additions & 1 deletion .config/helix/config.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
theme = "bogster"
theme = "trim"

[editor]
line-number = "relative"
cursorline = true
cursorcolumn = true
mouse = false
bufferline = "always"
auto-save = true

[editor.cursor-shape]
insert = "bar"
Expand All @@ -11,3 +15,9 @@ select = "underline"

[editor.file-picker]
hidden = false

[editor.lsp]
display-inlay-hints = true

[keys.normal]
esc = ["collapse_selection", "keep_primary_selection"]
20 changes: 20 additions & 0 deletions .config/helix/languages.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#[[language]]
#name = "rust"

#[language.language-server]
#command = "rustup"
#args = ["run", "stable", "rust-analyzer"]

[[language]]
name = "typst"
scope = "source.typst"
injection-regex = "^typst$"
file-types = ["typ"]
comment-token = "//"
indent = { tab-width = 2, unit = " " }
roots = []
language-server = { command = "typst-lsp" }

#[[grammar]]
#name = "typst"
#source = { git = "https://github.com/frozolotl/tree-sitter-typst.git" }
71 changes: 71 additions & 0 deletions .config/helix/themes/trim.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
"diff.plus" = "#59dcb7"
"diff.delta" = "#dc7759"
"diff.minus" = "#dc597f"

"ui.background" = { bg = "black" }
"ui.linenr" = { fg = "#415367" }
"ui.linenr.selected" = { fg = "#e5ded6" } # TODO
"ui.cursorline" = { bg = "236" }
"ui.statusline" = { fg = "#e5ded6", bg = "239" }
"ui.statusline.inactive" = { fg = "#c6b8ad", bg = "236" }
"ui.menu" = { fg = "255", bg = "239" }
"ui.menu.selected" = { fg = "255", bg = "241" }
"ui.popup" = { bg = "239" }
"ui.window" = { bg = "239" }
"ui.help" = { bg = "239", fg = "255" }

"ui.text" = { fg = "#e5ded6" }
"ui.text.focus" = { fg = "#e5ded6", modifiers= ["bold"] }
"ui.virtual.whitespace" = "#627d9d"
"ui.virtual.ruler" = { bg = "#131920" }

"ui.selection" = { bg = "#313f4e" }
"ui.cursor.match" = { fg = "#313f4e", bg = "#dc7759" }
"ui.cursor" = { fg = "#ABB2BF", bg = "1" }


"warning" = "#dc7759"
"error" = "#dc597f"
"info" = "#59dcb7"
"hint" = "#59c0dc"

# make diagnostic underlined, to distinguish with selection text.
diagnostic = { modifiers = ["underlined"] }

#LSP
"attribute" = "#dc7759"
"keyword" = { fg = "#dcb659", modifiers = ["bold"] }
"keyword.directive" = "#dcb659"
"namespace" = "#d32c5d"
"punctuation" = "#dc7759"
"punctuation.delimiter" = "#dc7759"
"operator" = { fg = "#dc7759", modifiers = ["bold"] }
"special" = "#7fdc59"
"variable.other.member" = "#c6b8ad"
"variable" = "#c6b8ad"
"variable.parameter" = "#c6b8ad"
"type" = "#dc597f"
"type.builtin" = { fg = "#d32c5d", modifiers = ["bold"] }
"constructor" = "#dc597f"
"function" = "#59dcd8"
"function.macro" = { fg = "#dc7759", modifiers = ["bold"] }
"function.builtin" = { fg = "#59dcd8", modifiers = ["bold"] }
"comment" = "#627d9d"
"variable.builtin" = "#c6b8ad"
"constant" = "#59dcb7"
"constant.builtin" = "#59dcb7"
"string" = "#59dcb7"
"constant.numeric" = "#59c0dc"
"constant.character.escape" = { fg = "#7fdc59", modifiers = ["bold"] }
"label" = "#59c0dc"
"module" = "#d32c5d"

"markup.heading" = "blue"
"markup.list" = "red"
"markup.bold" = { fg = "yellow", modifiers = ["bold"] }
"markup.italic" = { fg = "magenta", modifiers = ["italic"] }
"markup.link.url" = { fg = "yellow", modifiers = ["underlined"] }
"markup.link.text" = "red"
"markup.quote" = "cyan"
"markup.raw" = "green"

16 changes: 10 additions & 6 deletions .config/kitty/kitty.conf
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
include ~/.cache/wal/colors.conf

# font_family PragmataPro Mono Regular
# font_family Iosevka Term SS08 Light
font_family VictorMono Nerd Font Mono
bold_font VictorMono Nerd Font Mono
italic_font VictorMono Nerd Font Mono
bold_italic_font VictorMono Nerd Font Mono
font_family Iosevka Term SS08 Light Nerd Font Complete Mono
italic_font Iosevka Term SS08 Light Italic Nerd Font Complete Mono
bold_font Iosevka Term SS08 Extrabold Nerd Font Complete Mono

# font_family VictorMono Nerd Font Mono
# bold_font VictorMono Nerd Font Mono
# italic_font VictorMono Nerd Font Mono
# bold_italic_font VictorMono Nerd Font Mono

symbol_map U+EA60-U+EBBC fluents
symbol_map U+f101-U+f208 nonicon
symbol_map U+EA60-U+EBBC codicon

disable_ligatures cursor

font_size 16.0
adjust_line_height 0
adjust_column_width 0
Expand Down
Loading

0 comments on commit 7bb6c1d

Please sign in to comment.