Compare commits

..

3 Commits

Author SHA1 Message Date
don philipe
97e16f6273 Merge branch 'master' of https://github.com/don-philipe/dotfiles 2026-03-27 19:42:48 +01:00
don philipe
5ede1b3b47 Merge branch 'master' of https://github.com/don-philipe/dotfiles 2026-03-20 10:40:49 +01:00
don philipe
6033bd016e Add nvim dap, parrot 2026-03-20 10:40:42 +01:00
5 changed files with 17 additions and 8 deletions

View File

@@ -4,7 +4,7 @@ URxvt.foreground: white
!URxvt.borderColor: dark grey !URxvt.borderColor: dark grey
URxvt.scrollBar: false URxvt.scrollBar: false
URxvt.cursorColor: green URxvt.cursorColor: green
URxvt.font: xft:monospace:size=9,xft:Noto Color Emoji URxvt.font: xft:Jet Brains Mono Nerd Font:size=9,xft:monospace:size=9,xft:Noto Color Emoji
URxvt.perl-ext-common: default,matcher URxvt.perl-ext-common: default,matcher
URxvt.url-launcher: /usr/bin/xdg-open URxvt.url-launcher: /usr/bin/xdg-open
URxvt.matcher.button: 1 URxvt.matcher.button: 1

View File

@@ -5,6 +5,7 @@ text = "#000000"
[env] [env]
# set this to have true color when using nvim etc. in remote tmux session # set this to have true color when using nvim etc. in remote tmux session
TERM = "xterm-256color" TERM = "xterm-256color"
WINIT_X11_SCALE_FACTOR = "1.0"
[font] [font]
size = 9 size = 9

View File

@@ -1,5 +1,5 @@
-- utilities functions -- utilities functions
require("utils") --require("utils")
require("config.remap") require("config.remap")
require("config.set") require("config.set")
@@ -22,10 +22,11 @@ require("config.gitsigns")
require("config.lualine") require("config.lualine")
require("config.telescope") require("config.telescope")
require("config.indentline") require("config.indentline")
require("config.redmine") --require("config.redmine")
require("config.diffview") require("config.diffview")
require("config.dap") require("config.dap")
require("config.parrot") require("config.parrot")
--require("config.gitea")
-- for some reason this must be placed in init.lua file -- for some reason this must be placed in init.lua file
-- it doesn't work in any lua/config/*.lua files -- it doesn't work in any lua/config/*.lua files

View File

@@ -1,5 +1,11 @@
-- return {
-- model = "llama3.2",
-- host = "jupiter",
-- port = "11434",
-- }
return { return {
model = "llama3.2", model = "llama3.3",
host = "foo", host = "owu-zegv-api.med.tu-dresden.de",
port = "11343", port = "443",
https = true,
} }

5
.zshrc
View File

@@ -106,7 +106,7 @@ autoload -U promptinit
promptinit promptinit
export XDG_CONFIG_HOME=$HOME/.config/ export XDG_CONFIG_HOME=$HOME/.config/
export EDITOR=vim export EDITOR=nvim
alias ls='ls --color=always' alias ls='ls --color=always'
alias grep='grep --color=always' alias grep='grep --color=always'
@@ -114,6 +114,7 @@ alias less='less -R'
alias dd='dd status=progress oflag=direct' alias dd='dd status=progress oflag=direct'
alias dotfiles='git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME' alias dotfiles='git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
alias hibernate='sudo systemctl hibernate' alias hibernate='sudo systemctl hibernate'
alias ssh="TERM=linux ssh" # for not complaining urxvt about terminals without TERM set #alias ssh="TERM=linux ssh" # for not complaining urxvt about terminals without TERM set
alias cpup="cp -T $0 ../$0" alias cpup="cp -T $0 ../$0"
alias pythonweb="python -m SimpleHTTPServer 8090" alias pythonweb="python -m SimpleHTTPServer 8090"
alias sayhi="echo hi"