mirror of
https://github.com/don-philipe/dotfiles.git
synced 2026-03-31 02:33:11 +02:00
Compare commits
3 Commits
16d1175f21
...
97e16f6273
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
97e16f6273 | ||
|
|
5ede1b3b47 | ||
|
|
6033bd016e |
@@ -4,7 +4,7 @@ URxvt.foreground: white
|
||||
!URxvt.borderColor: dark grey
|
||||
URxvt.scrollBar: false
|
||||
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.url-launcher: /usr/bin/xdg-open
|
||||
URxvt.matcher.button: 1
|
||||
|
||||
@@ -5,6 +5,7 @@ text = "#000000"
|
||||
[env]
|
||||
# set this to have true color when using nvim etc. in remote tmux session
|
||||
TERM = "xterm-256color"
|
||||
WINIT_X11_SCALE_FACTOR = "1.0"
|
||||
|
||||
[font]
|
||||
size = 9
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
-- utilities functions
|
||||
require("utils")
|
||||
--require("utils")
|
||||
|
||||
require("config.remap")
|
||||
require("config.set")
|
||||
@@ -22,10 +22,11 @@ require("config.gitsigns")
|
||||
require("config.lualine")
|
||||
require("config.telescope")
|
||||
require("config.indentline")
|
||||
require("config.redmine")
|
||||
--require("config.redmine")
|
||||
require("config.diffview")
|
||||
require("config.dap")
|
||||
require("config.parrot")
|
||||
--require("config.gitea")
|
||||
|
||||
-- for some reason this must be placed in init.lua file
|
||||
-- it doesn't work in any lua/config/*.lua files
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
-- return {
|
||||
-- model = "llama3.2",
|
||||
-- host = "jupiter",
|
||||
-- port = "11434",
|
||||
-- }
|
||||
return {
|
||||
model = "llama3.2",
|
||||
host = "foo",
|
||||
port = "11343",
|
||||
model = "llama3.3",
|
||||
host = "owu-zegv-api.med.tu-dresden.de",
|
||||
port = "443",
|
||||
https = true,
|
||||
}
|
||||
|
||||
5
.zshrc
5
.zshrc
@@ -106,7 +106,7 @@ autoload -U promptinit
|
||||
promptinit
|
||||
|
||||
export XDG_CONFIG_HOME=$HOME/.config/
|
||||
export EDITOR=vim
|
||||
export EDITOR=nvim
|
||||
|
||||
alias ls='ls --color=always'
|
||||
alias grep='grep --color=always'
|
||||
@@ -114,6 +114,7 @@ alias less='less -R'
|
||||
alias dd='dd status=progress oflag=direct'
|
||||
alias dotfiles='git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
|
||||
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 pythonweb="python -m SimpleHTTPServer 8090"
|
||||
alias sayhi="echo hi"
|
||||
|
||||
Reference in New Issue
Block a user