Compare commits
2 commits
aac8bb74d2
...
c602206136
Author | SHA1 | Date | |
---|---|---|---|
c602206136 | |||
a40ab52509 |
5 changed files with 17 additions and 1 deletions
3
.config/.gitignore
vendored
3
.config/.gitignore
vendored
|
@ -25,6 +25,9 @@
|
|||
# neovim
|
||||
!/nvim/
|
||||
|
||||
# RA-Mux
|
||||
!/ra-multiplex/
|
||||
|
||||
# git
|
||||
!/git/
|
||||
!/git-graph/
|
||||
|
|
|
@ -23,6 +23,11 @@ style = 'agnoster_full'
|
|||
"~" = ""
|
||||
"~/Downloads" = ""
|
||||
"~/Workspace" = " "
|
||||
"~/Workspace/Learning" = " "
|
||||
"~/Workspace/School" = " "
|
||||
"~/Workspace/AdventOfCode" = " "
|
||||
"~/Workspace/Userscripts" = ""
|
||||
"~/Workspace/Forgejo" = ""
|
||||
|
||||
[[blocks.segments]]
|
||||
type = 'git'
|
||||
|
|
6
.config/ra-multiplex/config.toml
Normal file
6
.config/ra-multiplex/config.toml
Normal file
|
@ -0,0 +1,6 @@
|
|||
instance_timeout = 600 # after 10 minutes
|
||||
gc_interval = 10 # every 10 seconds
|
||||
listen = ["127.0.0.1", 27631] # localhost & some random unprivileged port
|
||||
connect = ["127.0.0.1", 27631] # same as `listen`
|
||||
log_filters = "info"
|
||||
pass_environment = []
|
|
@ -3,7 +3,7 @@ Description=Multiplex Rust Analyzer Sessions, for a fast LSP experience
|
|||
|
||||
[Service]
|
||||
Type=simple
|
||||
ExecStart=/usr/bin/zsh -l -c 'exec "$@"' _ ra-multiplex server
|
||||
ExecStart=/usr/bin/zsh -l -c 'exec "$@"' _ %h/.local/share/cargo/bin/ra-multiplex server
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
||||
|
|
2
.zshrc
2
.zshrc
|
@ -112,6 +112,8 @@ ws() {
|
|||
["$HOME/Workspace/Learning"]='3, '
|
||||
["$HOME/Workspace/School"]='3, '
|
||||
["$HOME/Workspace/AdventOfCode"]='3, '
|
||||
["$HOME/Workspace/Userscripts"]='3,'
|
||||
["$HOME/Workspace/Forgejo"]='3,'
|
||||
["$HOME/Workspace"]='2, '
|
||||
["$HOME/Downloads"]='2,'
|
||||
["$HOME"]='1, '
|
||||
|
|
Loading…
Reference in a new issue