Compare commits
No commits in common. "917ee7dd0a1c5cea89925ecebb85f92e650c1482" and "c1f1491d6b6a423560d3ec459b2cf90962dfec0b" have entirely different histories.
917ee7dd0a
...
c1f1491d6b
@ -1,55 +0,0 @@
|
|||||||
[core]
|
|
||||||
editor = nvim
|
|
||||||
autocrlf = input
|
|
||||||
pager = delta
|
|
||||||
excludeFiles = ~/.gitignore
|
|
||||||
|
|
||||||
[interactive]
|
|
||||||
diffFilter = delta --color-only
|
|
||||||
|
|
||||||
[delta]
|
|
||||||
navigate = true
|
|
||||||
light = false
|
|
||||||
line-numbers = true
|
|
||||||
|
|
||||||
[merge]
|
|
||||||
conflictstyle = zdiff3
|
|
||||||
|
|
||||||
[diff]
|
|
||||||
colorMoved = default
|
|
||||||
algorithm = histogram
|
|
||||||
|
|
||||||
[rebase]
|
|
||||||
autosquash = true
|
|
||||||
autostash = true
|
|
||||||
|
|
||||||
[push]
|
|
||||||
default = current
|
|
||||||
autoSetupRemote = true
|
|
||||||
|
|
||||||
[init]
|
|
||||||
defaultBranch = main
|
|
||||||
|
|
||||||
[commit]
|
|
||||||
verbose = true
|
|
||||||
|
|
||||||
[rerere]
|
|
||||||
enabled = true
|
|
||||||
|
|
||||||
[help]
|
|
||||||
autocorrect = 10
|
|
||||||
|
|
||||||
[log]
|
|
||||||
date = iso
|
|
||||||
|
|
||||||
[branch]
|
|
||||||
sort = -committerdate
|
|
||||||
|
|
||||||
[color]
|
|
||||||
ui = auto
|
|
||||||
|
|
||||||
# See: https://git-scm.com/docs/git-config#_includes
|
|
||||||
[includeIf "gitdir:~/src/personal/**"]
|
|
||||||
path = ~/.gitconfig-personal
|
|
||||||
[includeIf "gitdir:~/src/work/**"]
|
|
||||||
path = ~/.gitconfig-work
|
|
@ -1,7 +0,0 @@
|
|||||||
[user]
|
|
||||||
name = Marvin Elsen
|
|
||||||
email = git@marvinelsen.com
|
|
||||||
signingKey = 7EBB0A920C1A1E0A52C246C6820672408CC318C2
|
|
||||||
|
|
||||||
[commit]
|
|
||||||
gpgSign = true
|
|
2
git/.gitignore
vendored
2
git/.gitignore
vendored
@ -1,2 +0,0 @@
|
|||||||
.idea
|
|
||||||
.DS_Store
|
|
@ -1,5 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
brew install git git-delta gradle fish neovim sqlite jq eza bat fzf fd ripgrep stow tree-sitter yt-dlp pandoc
|
|
||||||
brew install --cask wezterm
|
|
||||||
brew install --cask temurin
|
|
@ -1,12 +0,0 @@
|
|||||||
local wezterm = require 'wezterm'
|
|
||||||
|
|
||||||
local module = {}
|
|
||||||
|
|
||||||
function module.is_dark()
|
|
||||||
if wezterm.gui then
|
|
||||||
return wezterm.gui.get_appearance():find("Dark")
|
|
||||||
end
|
|
||||||
return true
|
|
||||||
end
|
|
||||||
|
|
||||||
return module
|
|
@ -1,28 +0,0 @@
|
|||||||
local wezterm = require 'wezterm'
|
|
||||||
local appearance = require 'appearance'
|
|
||||||
|
|
||||||
local config = wezterm.config_builder()
|
|
||||||
|
|
||||||
-- https://wezfurlong.org/wezterm/colorschemes/index.html
|
|
||||||
|
|
||||||
-- if appearance.is_dark() then
|
|
||||||
config.color_scheme = 'Catppuccin Mocha'
|
|
||||||
|
|
||||||
-- else
|
|
||||||
-- config.color_scheme = 'Catppuccin Latte'
|
|
||||||
--end
|
|
||||||
|
|
||||||
config.font = wezterm.font({ family = 'FantasqueSansM Nerd Font' })
|
|
||||||
config.font_size = 14
|
|
||||||
|
|
||||||
-- config.window_background_opacity = 1
|
|
||||||
-- config.macos_window_background_blur = 30
|
|
||||||
config.window_decorations = 'RESIZE|INTEGRATED_BUTTONS'
|
|
||||||
config.window_frame = {
|
|
||||||
font = wezterm.font({ family = 'FantasqueSansM Nerd Font', weight = 'Bold' }),
|
|
||||||
font_size = 14
|
|
||||||
}
|
|
||||||
|
|
||||||
config.default_prog = { '/opt/homebrew/bin/fish', '-li' }
|
|
||||||
|
|
||||||
return config
|
|
Loading…
Reference in New Issue
Block a user