summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.config/dunst/dunstrc1
-rw-r--r--.config/nvim/lua/hooks.lua16
-rwxr-xr-x.local/bin/synchdd3
3 files changed, 11 insertions, 9 deletions
diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc
index 90540f9..8cac664 100644
--- a/.config/dunst/dunstrc
+++ b/.config/dunst/dunstrc
@@ -2,7 +2,6 @@
monitor = 0
follow = none
width = (200, 800)
- height = 500
origin = top-right
offset = 50x50
indicate_hidden = yes
diff --git a/.config/nvim/lua/hooks.lua b/.config/nvim/lua/hooks.lua
index aeb43a9..eaf0687 100644
--- a/.config/nvim/lua/hooks.lua
+++ b/.config/nvim/lua/hooks.lua
@@ -1,8 +1,8 @@
--- vim.api.nvim_create_autocmd({"BufWritePre"}, {
--- pattern = "*",
--- callback = function(ev)
--- save_cursor = vim.fn.getpos(".")
--- vim.cmd([[%s/\s\+$//e]])
--- vim.fn.setpos(".", save_cursor)
--- end,
--- })
+vim.api.nvim_create_autocmd({"BufWritePre"}, {
+ pattern = "*",
+ callback = function(ev)
+ save_cursor = vim.fn.getpos(".")
+ vim.cmd([[%s/\s\+$//e]])
+ vim.fn.setpos(".", save_cursor)
+ end,
+})
diff --git a/.local/bin/synchdd b/.local/bin/synchdd
index af1aa96..642967a 100755
--- a/.local/bin/synchdd
+++ b/.local/bin/synchdd
@@ -7,6 +7,9 @@ dest="$HOME"/exthdd/
# books
rsync -avhk --delete-after \
$HOME/books $dest
+# dev
+rsync -avhk --delete-after \
+ $HOME/dev $dest
# docs
rsync -avhk --delete-after \
--exclude 'dotfiles-*' \