Compare commits

..

No commits in common. "9bd99e2794445e6a45540ffd7e3f576fbe8ffd39" and "98d64b5e0e98677246816558e4dff5442cd77157" have entirely different histories.

9 changed files with 13 additions and 29 deletions

View file

@ -34,8 +34,8 @@ alias grep='grep --color=auto'
alias grep-highlight='grep -e "^" -e' alias grep-highlight='grep -e "^" -e'
alias hist-grep='history 0 | grep ' alias hist-grep='history 0 | grep '
alias http-server='python3 -m http.server'
alias icat="kitty +kitten icat"
alias ip='ip -c' alias ip='ip -c'
alias j='jump' alias j='jump'
@ -50,6 +50,8 @@ alias make='make -j5'
alias mkdir='mkdir -pv' alias mkdir='mkdir -pv'
alias mv='mv -iv' alias mv='mv -iv'
alias nixos-rebuild-tinker='sudo nixos-rebuild switch -p tinkering --no-build-nix'
alias pacman-autoremove='sudo pacman -Rns $(pacman -Qtdq)' alias pacman-autoremove='sudo pacman -Rns $(pacman -Qtdq)'
alias pacman-autoremove-opts='sudo pacman -Rns $(pacman -Qttdq)' alias pacman-autoremove-opts='sudo pacman -Rns $(pacman -Qttdq)'
alias ps-grep='ps aux | grep -v grep | grep' alias ps-grep='ps aux | grep -v grep | grep'
@ -58,6 +60,7 @@ alias qutebrowser-kiosk='qutebrowser -B $XDG_DATA_HOME/qutebrowser-kiosk -C $XDG
alias rm='rm -I --one-file-system -v' alias rm='rm -I --one-file-system -v'
alias sail='bash vendor/bin/sail'
alias sl='ls' alias sl='ls'
alias sudo='sudo ' alias sudo='sudo '

View file

@ -38,12 +38,6 @@ target = "eza"
pipe = "tar xzO" pipe = "tar xzO"
groups = ["base"] groups = ["base"]
[[ autoinstall ]]
type = "exe"
source = "https://github.com/apple/pkl/releases/download/0.25.2/pkl-linux-amd64"
target = "pkl"
groups = ["base"]
[[autoinstall]] [[autoinstall]]
type = "exe" type = "exe"
source = "https://git.serguzim.me/serguzim/tools/releases/download/latest/autostart-manage" source = "https://git.serguzim.me/serguzim/tools/releases/download/latest/autostart-manage"

View file

@ -27,7 +27,6 @@ export BEMENU_OPTS="--tb '#6272a4'\
--no-overlap\ --no-overlap\
-P '>' -p ''" -P '>' -p ''"
export DFT_DISPLAY="side-by-side-show-both"
export DMENU="bemenu" export DMENU="bemenu"
export DOCKER_BUILDKIT=1 export DOCKER_BUILDKIT=1

View file

@ -5,21 +5,15 @@
[core] [core]
excludesfile = ~/.config/git/ignore excludesfile = ~/.config/git/ignore
editor = vim editor = vim
pager = less
autocrlf = input autocrlf = input
[help] [help]
autocorrect = 20 autocorrect = 20
[diff] [diff]
tool = difftastic tool = vimdiff
external = difft
[difftool] [difftool]
prompt = false prompt = false
[difftool "difftastic"] trustExitCode = true
cmd = difft "$LOCAL" "$REMOTE"
[pager]
difftool = true
[alias] [alias]
b = branch -vv b = branch -vv
ci = commit ci = commit
@ -34,10 +28,12 @@
lo = log --graph --decorate --oneline --all lo = log --graph --decorate --oneline --all
s = status s = status
[log]
date = iso
[merge] [merge]
conflictstyle = zdiff3 tool = vim_mergetool
conflictstyle = diff3
[mergetool "vim_mergetool"]
cmd = vim -f -c "MergetoolStart" "$MERGED" "$BASE" "$LOCAL" "$REMOTE"
trustExitCode = true
[sendemail] [sendemail]
smtpserver = mail.serguzim.me smtpserver = mail.serguzim.me
smtpuser = tobias@msrg.cc smtpuser = tobias@msrg.cc

View file

@ -5,8 +5,6 @@
home.packages = with pkgs; [ home.packages = with pkgs; [
asciinema # tool to record terminal sessions asciinema # tool to record terminal sessions
bat # cat-alternative bat # cat-alternative
cachix # tool to manage nix binary caches
difftastic # tool to compare files
direnv # tool to load custom environments direnv # tool to load custom environments
docker-credential-helpers docker-credential-helpers
doggo # dns client doggo # dns client

View file

@ -1,3 +0,0 @@
experimental-features = nix-command flakes
substituters = https://cache.nixos.org https://hyprland.cachix.org https://devenv.cachix.org
trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc= devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw=

View file

@ -1,6 +1,6 @@
require'nvim-treesitter.configs'.setup { require'nvim-treesitter.configs'.setup {
-- A list of parser names, or "all" (the five listed parsers should always be installed) -- A list of parser names, or "all" (the five listed parsers should always be installed)
ensure_installed = { "c", "lua", "pkl", "query", "vim", "vimdoc" }, ensure_installed = { "c", "lua", "vim", "vimdoc", "query" },
-- Install parsers synchronously (only applied to `ensure_installed`) -- Install parsers synchronously (only applied to `ensure_installed`)
sync_install = false, sync_install = false,

View file

@ -17,7 +17,6 @@ return require('packer').startup(function(use)
'nvim-treesitter/nvim-treesitter', 'nvim-treesitter/nvim-treesitter',
run = ':TSUpdate' run = ':TSUpdate'
}) })
use("apple/pkl-neovim")
use("github/copilot.vim") use("github/copilot.vim")
use("mbbill/undotree") use("mbbill/undotree")

View file

@ -34,8 +34,6 @@ vim.opt.updatetime = 50
vim.opt.colorcolumn = "80" vim.opt.colorcolumn = "80"
vim.opt.foldenable = false
vim.api.nvim_create_autocmd('TextYankPost', { vim.api.nvim_create_autocmd('TextYankPost', {
group = vim.api.nvim_create_augroup('highlight_yank', {}), group = vim.api.nvim_create_augroup('highlight_yank', {}),