index — dotfiles @ 458b64615b5581b3e095ec6674e132260fb22dfe

my dotfiles

update various things
Christian Krinitsin code@krinitsin.xyz
Thu, 09 Jan 2025 08:54:38 +0100
commit

458b64615b5581b3e095ec6674e132260fb22dfe

parent

154e1ee752e842892b0c15fc3778e126f019415c

M alacritty/.config/alacritty/alacritty.tomlalacritty/.config/alacritty/alacritty.toml

@@ -37,3 +37,8 @@ size = 12.0

[scrolling] history = 2000 + +[[keyboard.bindings]] +action = "SpawnNewInstance" +key = "Return" +mods = "Control|Shift"
M dunstify/.config/dunst/dunstrcdunstify/.config/dunst/dunstrc

@@ -4,7 +4,7 @@ [global]

### Display ### # Which monitor should the notifications be displayed on. - monitor = 1 + monitor = 0 # Display notification on focused monitor. Possible modes are: # mouse: follow mouse pointer

@@ -17,7 +17,7 @@ # This should be the case for almost all modern window managers.

# # If this option is set to mouse or keyboard, the monitor option # will be ignored. - follow = none + follow = mouse ### Geometry ###

@@ -30,10 +30,10 @@ # The maximum height of a single notification, excluding the frame.

#height = 200 # Position the notification in the top right corner - origin = top-right + origin = top-center # Offset from the origin - offset = 30x40 + offset = (30, 40) # Scale factor. It is auto-detected if value is 0. scale = 0

@@ -210,7 +210,7 @@

### Misc/Advanced ### # dmenu path. - dmenu = /home/chris/.local/bin/dmenu -p dunst: + dmenu = /home/chris/.dotfiles/bin/dmenu -p dunst: # Browser for opening urls in context menu. browser = /usr/bin/xdg-open

@@ -296,14 +296,14 @@ background = "#2b3339"

foreground = "#d3c6aa" timeout = 5 # Icon for notifications with low urgency, uncomment to enable - icon = /usr/share/icons/Arc-X-D/status/16/dialog-information.png + # icon = /usr/share/icons/Arc-X-D/status/16/dialog-information.png [urgency_normal] background = "#2b3339" foreground = "#d3c6aa" timeout = 5 # Icon for notifications with normal urgency, uncomment to enable - icon = /usr/share/icons/Arc-X-D/status/16/dialog-question.png + # icon = /usr/share/icons/Arc-X-D/status/16/dialog-question.png [urgency_critical] background = "#2b3339"

@@ -311,7 +311,7 @@ foreground = "#d3c6aa"

frame_color = "#d699b6" timeout = 120 # Icon for notifications with critical urgency, uncomment to enable - icon = /usr/share/icons/Arc-X-D/status/16/dialog-warning.png + # icon = /usr/share/icons/Arc-X-D/status/16/dialog-warning.png # Every section that isn't one of the above is interpreted as a rules to # override settings for certain messages.
M git/.gitconfiggit/.gitconfig

@@ -1,5 +1,8 @@

[user] email = code@krinitsin.xyz name = Christian Krinitsin + signingkey = C070FC6EAB05AB36 [pull] rebase = true +[commit] + gpgsign = true
M nvim/.config/nvim/lua/core/keymaps.luanvim/.config/nvim/lua/core/keymaps.lua

@@ -17,3 +17,5 @@ vim.keymap.set('n', '<leader>ma', ':w<CR>:make<CR>', {})

vim.keymap.set('x', 'p', 'P', {}); vim.keymap.set('x', 'P', 'p', {}); + +vim.keymap.set('n', '<leader>fm', ':lua vim.lsp.buf.format()<CR>', {})