Merge branch 'main' of https://git.snaile.de/luca/dotfiles
This commit is contained in:
commit
143ab3bd9a
10 changed files with 126 additions and 10 deletions
|
@ -1,7 +1,6 @@
|
|||
return {
|
||||
{
|
||||
"yetone/avante.nvim",
|
||||
version = "0.0.13", -- https://github.com/yetone/avante.nvim/issues/966
|
||||
event = "VeryLazy",
|
||||
dependencies = {
|
||||
"stevearc/dressing.nvim",
|
||||
|
|
|
@ -76,14 +76,14 @@ return {
|
|||
desc = "Content from selection",
|
||||
mode = { "v" }
|
||||
},
|
||||
{ "<leader>zb", function() require("zk.commands").get("ZkBacklinks")() end, desc = "Links" },
|
||||
{ "<leader>zl", function() require("zk.commands").get("ZkLinks")() end, desc = "Backlinks" },
|
||||
{ "<leader>zl", function() require("zk.commands").get("ZkLinks")() end, desc = "Links" },
|
||||
{ "<leader>zb", function() require("zk.commands").get("ZkBacklinks")() end, desc = "Backlinks" },
|
||||
{ "<leader>zx", function() require("zk.commands").get("ZkIndex")() end, desc = "Index" },
|
||||
{ "<leader>zt", function() require("zk.commands").get("ZkTags")() end, desc = "Find Tags" },
|
||||
{ "<leader>zf", function() require("zk.commands").get("ZkNotes")({ sort = { 'modified' } }) end, desc = "Find Notes" },
|
||||
{ "<leader>zt", function() require("zk.commands").get("ZkTags")() end, desc = "Find Note Tags" },
|
||||
{ "<leader>zf", function() require("zk.commands").get("ZkMatch")() end, desc = "Find Notes (Match Selection)", mode = { "v" } },
|
||||
{ "<leader>zf", "<ESC>gv<CMD>'<,'>ZkMatch<CR>", desc = "Find Notes (Match Selection)", mode = { "v" } },
|
||||
{ "<leader>zi", function() require("zk.commands").get("ZkInsertLink")() end, desc = "Insert Link", mode = { "n" } },
|
||||
-- { "<leader>zi", function() require("zk.commands").get("ZkInsertLinkAtSelection")() end, desc = "Insert Link", mode = { "v" } },
|
||||
{ "<leader>zi", "<ESC>gv<CMD>'<,'>ZkInsertLinkAtSelection<CR>", desc = "Insert Link", mode = { "v" } },
|
||||
},
|
||||
},
|
||||
{
|
||||
|
|
|
@ -20,3 +20,5 @@ Rustdesk
|
|||
JSON
|
||||
bcrypt
|
||||
basicauth
|
||||
relativization
|
||||
antizionist
|
||||
|
|
|
@ -108,7 +108,6 @@ export WINEPREFIX="${XDG_DATA_HOME}/wineprefixes/default"
|
|||
export WORKON_HOME="${XDG_DATA_HOME}/virtualenv"
|
||||
export XAUTHORITY="${XDG_RUNTIME_DIR}/Xauthority"
|
||||
export XBPS_DISTDIR="${XDG_DOCUMENTS_DIR}/dev/server/void-packages"
|
||||
export ZK_NOTEBOOK_DIR="${XDG_DOCUMENTS_DIR}/notes"
|
||||
export ZSH_COMPDUMP="${XDG_CACHE_HOME}/zcompdump"
|
||||
export _JAVA_OPTIONS="-Djava.util.prefs.userRoot=${XDG_CONFIG_HOME}/java"
|
||||
export GIT_SIGN_FALLBACK_KEY_IDS="config"
|
||||
|
|
99
common/.config/task/tokyo-night-256.theme
Normal file
99
common/.config/task/tokyo-night-256.theme
Normal file
|
@ -0,0 +1,99 @@
|
|||
###############################################################################
|
||||
#
|
||||
# Copyright 2006 - 2021, Tomas Babej, Paul Beckingham, Federico Hernandez.
|
||||
#
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
# of this software and associated documentation files (the "Software"), to deal
|
||||
# in the Software without restriction, including without limitation the rights
|
||||
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
# copies of the Software, and to permit persons to whom the Software is
|
||||
# furnished to do so, subject to the following conditions:
|
||||
#
|
||||
# The above copyright notice and this permission notice shall be included
|
||||
# in all copies or substantial portions of the Software.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
# SOFTWARE.
|
||||
#
|
||||
# https://www.opensource.org/licenses/mit-license.php
|
||||
#
|
||||
###############################################################################
|
||||
|
||||
# Theme author: Luca Bilke @ssnailed
|
||||
|
||||
rule.precedence.color=deleted,completed,active,keyword.,tag.,project.,overdue,scheduled,due.today,due,blocked,blocking,recurring,tagged,uda.
|
||||
|
||||
# General decoration
|
||||
color.label=
|
||||
color.label.sort=
|
||||
color.alternate=
|
||||
color.header=0xFFC777
|
||||
color.footnote=0xFFC777
|
||||
color.warning=bold 0xF7768E
|
||||
color.error=0x15161E on 0xF7768E
|
||||
color.debug=0x7AA2F7
|
||||
|
||||
# Task state
|
||||
color.completed=
|
||||
color.deleted=
|
||||
color.active=0x15161E on 0xFF9E64
|
||||
color.recurring=0x3D59A1
|
||||
color.scheduled=on 0x15161E
|
||||
color.until=
|
||||
color.blocked=0xC0CAF5 on 0x3B4261
|
||||
color.blocking=0x15161E on 0xC0CAF5
|
||||
|
||||
# Project
|
||||
color.project.none=
|
||||
|
||||
# Priority
|
||||
color.uda.priority.H=0x7DCFFF
|
||||
color.uda.priority.M=0x97C8E5
|
||||
color.uda.priority.L=0xA4C5D8
|
||||
|
||||
# Tags
|
||||
color.tag.next=bold 0xE0AF68
|
||||
color.tag.none=
|
||||
color.tagged=
|
||||
|
||||
# Due
|
||||
color.due.today=0xF7768E
|
||||
color.due=0xFA3C5F
|
||||
color.overdue=0xFA2049
|
||||
|
||||
# Report: burndown
|
||||
color.burndown.done=on 0x449DAB
|
||||
color.burndown.pending=on 0x6183BB
|
||||
color.burndown.started=on 0x914C54
|
||||
|
||||
# Report: history
|
||||
color.history.add=0x15161E on 0xF7768E
|
||||
color.history.delete=0x15161E on 0xE0AF68
|
||||
color.history.done=0x15161E on 0x9ECE6A
|
||||
|
||||
# Report: summary
|
||||
color.summary.background=0xC0CAF5 on 0x15161E
|
||||
color.summary.bar=0x15161E on 0x9ECE6A
|
||||
|
||||
# Command: calendar
|
||||
color.calendar.due.today=0x15161E on 0xF7768E
|
||||
color.calendar.due=0x15161E on 0xFA3C5F
|
||||
color.calendar.holiday=0x15161E on 0x9ECE6A
|
||||
color.calendar.overdue=0x15161E on 0xFA2049
|
||||
color.calendar.today=0x15161E on 0x7AA2F7
|
||||
color.calendar.weekend=on 0x292E42
|
||||
color.calendar.weeknumber=0x3D59A1
|
||||
|
||||
# Command: sync
|
||||
color.sync.added=0x449DAB
|
||||
color.sync.changed=0x6183BB
|
||||
color.sync.rejected=0x914C54
|
||||
|
||||
# Command: undo
|
||||
color.undo.after=0x9ECE6A
|
||||
color.undo.before=0xF7768E
|
|
@ -1,5 +1,12 @@
|
|||
[notebook]
|
||||
dir = "~/Documents/notes"
|
||||
dir = "~/Public/notes"
|
||||
|
||||
[note]
|
||||
language = "en"
|
||||
filename = "{{id}}"
|
||||
extension = "md"
|
||||
template = "default.md"
|
||||
id-length = 5
|
||||
|
||||
[tool]
|
||||
fzf-preview = "COLORTERM=truecolor CLICOLOR_FORCE=1 glow -w \"$FZF_PREVIEW_COLUMNS\" -s tokyo-night {-1}"
|
||||
|
@ -13,3 +20,8 @@ note-detail = "{{metadata}}"
|
|||
[lsp.diagnostics]
|
||||
wiki-title = "hint"
|
||||
dead-link = "error"
|
||||
|
||||
[format.markdown]
|
||||
hashtags = true
|
||||
colon-tags = false
|
||||
multiword-tags = false
|
||||
|
|
|
@ -34,8 +34,10 @@ zsnippet https://raw.githubusercontent.com/python-virtualenvwrapper/virtualenvwr
|
|||
turbo
|
||||
zload MichaelAquilina/zsh-auto-notify
|
||||
AUTO_NOTIFY_IGNORE+=(
|
||||
bluetuith
|
||||
commit
|
||||
elia
|
||||
fg
|
||||
git
|
||||
gunicorn
|
||||
htop
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
#!/bin/sh
|
||||
firefox 'gitlab.tralios.de' 'op.tralios.de/my/page' 'adminfrontend.prod.kc.production.kubernetes.tralios.de' 'prometheus.tralios.de/overview' 'mm.tralios.de' 'tickets.tralios.de'
|
||||
floorp 'gitlab.tralios.de' 'op.tralios.de/my/page' 'adminfrontend.prod.kc.production.kubernetes.tralios.de' 'prometheus.tralios.de/overview' 'mm.tralios.de' 'tickets.tralios.de'
|
||||
|
|
4
common/.local/share/icons/default/index.theme
Normal file
4
common/.local/share/icons/default/index.theme
Normal file
|
@ -0,0 +1,4 @@
|
|||
[Icon Theme]
|
||||
Name=Default
|
||||
Comment=Default Cursor Theme
|
||||
Inherits=Breeze_Snow
|
|
@ -1 +0,0 @@
|
|||
../../../../pipx/venvs/elia-chat/bin/elia
|
Loading…
Add table
Reference in a new issue