S'update

Changed files
+44 -11
config
zsh
+2 -1
config/nvim/lazy-lock.json
···
"fidget.nvim": { "branch": "main", "commit": "3f5475949679953af6d78654db29b944fa826e6a" },
"gemini-vim-syntax": { "branch": "master", "commit": "596d1f36b386e5b2cc1af4f2f8285134626878d1" },
"gitsigns.nvim": { "branch": "main", "commit": "1ee5c1fd068c81f9dd06483e639c2aa4587dc197" },
-
"lazy.nvim": { "branch": "main", "commit": "1ea3c4085785f460fb0e46d2fe1ee895f5f9e7c1" },
"lazydev.nvim": { "branch": "main", "commit": "e28ce52fc7ff79fcb76f0e79ee6fb6182fca90b9" },
"mason-lspconfig.nvim": { "branch": "main", "commit": "6bdb14f230de0904229ec367b410fb817e59b072" },
"mason-tool-installer.nvim": { "branch": "main", "commit": "517ef5994ef9d6b738322664d5fdd948f0fdeb46" },
"mason.nvim": { "branch": "main", "commit": "ad7146aa61dcaeb54fa900144d768f040090bff0" },
···
"fidget.nvim": { "branch": "main", "commit": "3f5475949679953af6d78654db29b944fa826e6a" },
"gemini-vim-syntax": { "branch": "master", "commit": "596d1f36b386e5b2cc1af4f2f8285134626878d1" },
"gitsigns.nvim": { "branch": "main", "commit": "1ee5c1fd068c81f9dd06483e639c2aa4587dc197" },
+
"lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" },
"lazydev.nvim": { "branch": "main", "commit": "e28ce52fc7ff79fcb76f0e79ee6fb6182fca90b9" },
+
"markview.nvim": { "branch": "main", "commit": "2f5d568937111968ea9d8aa9d77640979a84792d" },
"mason-lspconfig.nvim": { "branch": "main", "commit": "6bdb14f230de0904229ec367b410fb817e59b072" },
"mason-tool-installer.nvim": { "branch": "main", "commit": "517ef5994ef9d6b738322664d5fdd948f0fdeb46" },
"mason.nvim": { "branch": "main", "commit": "ad7146aa61dcaeb54fa900144d768f040090bff0" },
+5
config/nvim/lua/lazy-plugins.lua
···
end,
},
{ -- Autoformat
'stevearc/conform.nvim',
event = { 'BufWritePre' },
···
end,
},
+
{ -- markview
+
'OXY2DEV/markview.nvim',
+
lazy = false,
+
},
+
{ -- Autoformat
'stevearc/conform.nvim',
event = { 'BufWritePre' },
+34 -5
config/starship.toml
···
"$schema" = 'https://starship.rs/config-schema.json'
## PROMPT FORMAT
-
format = """$time$container$directory$all$cmd_duration$jobs$status$line_break$username$hostname$character"""
# # PALETTE
palette = 'catppuccin_mocha'
···
crust = '#11111b'
## LEFT SIDE - FIRST LINE
-
[time]
disabled = false
-
format = '[$time]($style) '
-
time_format = '%T'
-
style = 'bold peach'
[directory]
style = 'subtext0'
···
style = 'bold red'
recognize_signal_code = true
map_symbol = true
## LEFT SIDE - SECOND LINE
[username]
···
"$schema" = 'https://starship.rs/config-schema.json'
## PROMPT FORMAT
+
format = """
+
$os\
+
$container\
+
$directory\
+
$all\
+
$cmd_duration\
+
$jobs\
+
$status\
+
$fill\
+
$time\
+
$line_break\
+
$username\
+
$hostname\
+
$character\
+
"""
# # PALETTE
palette = 'catppuccin_mocha'
···
crust = '#11111b'
## LEFT SIDE - FIRST LINE
+
[os]
disabled = false
+
format = '[($name)]($style) '
+
style = 'bold rosewater'
+
+
[os.symbols]
+
CachyOS = 'CachyOS'
+
Debian = 'Debian'
+
FreeBSD = 'FreeBSD'
+
Ubuntu = 'Ubuntu'
[directory]
style = 'subtext0'
···
style = 'bold red'
recognize_signal_code = true
map_symbol = true
+
+
[fill]
+
symbol = ''
+
+
## RIGHT SIDE - FIRST LINE
+
[time]
+
disabled = false
+
format = ' [$time]($style)'
+
time_format = '%T'
+
style = 'bold peach'
## LEFT SIDE - SECOND LINE
[username]
-5
config/zellij/layouts/sysadmin.kdl
···
plugin location="zellij:status-bar"
}
}
-
tab name="irc" {
-
pane command="autossh" close_on_exit=true {
-
args "-M 0" "hyperreal@tilde.team"
-
}
-
}
tab name="nas" {
pane command="autossh" close_on_exit=true {
args "-M 0" "jas@nas.carp-wyvern.ts.net" "-X"
···
plugin location="zellij:status-bar"
}
}
tab name="nas" {
pane command="autossh" close_on_exit=true {
args "-M 0" "jas@nas.carp-wyvern.ts.net" "-X"
+3
zsh/.zshrc
···
# Use syntax highlighting when typing commands
zplug "zsh-users/zsh-syntax-highlighting", defer:2
# Press escape twice to prepend `sudo` to the command line
zplug "plugins/sudo", from:oh-my-zsh
···
# Use syntax highlighting when typing commands
zplug "zsh-users/zsh-syntax-highlighting", defer:2
+
# Use Arch Linux aliases
+
zplug "plugins/archlinux", from:oh-my-zsh
+
# Press escape twice to prepend `sudo` to the command line
zplug "plugins/sudo", from:oh-my-zsh