diff options
author | foswret <foswret@posteo.com> | 2025-07-11 17:08:05 -0500 |
---|---|---|
committer | foswret <foswret@posteo.com> | 2025-07-11 17:08:05 -0500 |
commit | d6e183e00177fb6e0f043f36ace82e52358f21b8 (patch) | |
tree | 3a21e8db30a0098e246998168ae90263c3697b12 | |
parent | e0da88ef0fe1e9a2aef6b095e56a84a3dae33845 (diff) |
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | Xresources | 8 | ||||
-rw-r--r-- | mpd/pid | 2 | ||||
-rw-r--r-- | nvim/lazy-lock.json | 6 | ||||
-rw-r--r-- | nvim/lua/plugins/init.lua | 1 | ||||
-rw-r--r-- | nvim/lua/plugins/render-markdown.lua | 9 | ||||
-rwxr-xr-x | scripts/dotfiles.sh | 2 |
7 files changed, 26 insertions, 6 deletions
@@ -10,5 +10,5 @@ When possible, the color scheme will be [Flexoki](https://stephango.com/flexoki) - Xresources ## Scripts -- `battery.sh`: script specifically designed to average the percentages of multiple batteries. Uses `acpi` to query battery percentages. I use this in my `dwmblocks` configuration. -- `dotfiles.sh`: syncs all my configuration files to my `dotfiles` local mirror, commits changes, and pushes. Configured to my system, but it is easy to configure to your personal needs. +- `battery.sh`: script specifically designed to average the percentages of multiple batteries. Uses `acpi` to query battery percentages. I use this in my `dwmblocks` configuration. Requires a patched [Nerd Font](https://www.nerdfonts.com/) to display icons. +- `dotfiles.sh`: syncs all my configuration files to my `dotfiles` local mirror with `rsync`, commits changes, and pushes. Configured to my system, but it is easy to configure to your personal needs. @@ -60,3 +60,11 @@ !white *color7: white *color15: brwhite + +!dwm preferences +*normbgcolor: black +*normbordercolor: brblack +*normfgcolor: white +*selfgcolor: brwhite +*selbordercolor: red +*selbgcolor: brred @@ -1 +1 @@ -2058 +2091 diff --git a/nvim/lazy-lock.json b/nvim/lazy-lock.json index 13a6ee1..b9d067c 100644 --- a/nvim/lazy-lock.json +++ b/nvim/lazy-lock.json @@ -4,12 +4,14 @@ "lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" }, "mason-lspconfig.nvim": { "branch": "main", "commit": "c2465eb07db648026eee81005a659abe26e6d077" }, "mason.nvim": { "branch": "main", "commit": "8024d64e1330b86044fed4c8494ef3dcd483a67c" }, + "mini.nvim": { "branch": "main", "commit": "66d3cf727d7bf2ba59df02e710f39640d9af823f" }, "neoconf.nvim": { "branch": "main", "commit": "d0a2652eb8e9fc4e6f531a622c8f32eb78b44a98" }, "neodev.nvim": { "branch": "main", "commit": "46aa467dca16cf3dfe27098042402066d2ae242d" }, "nvim-cmp": { "branch": "main", "commit": "b5311ab3ed9c846b585c0c15b7559be131ec4be9" }, "nvim-lspconfig": { "branch": "master", "commit": "bb3fb99cf14daa33014331ac6eb4b5de9180f775" }, - "obsidian.nvim": { "branch": "main", "commit": "ae1f76a75c7ce36866e1d9342a8f6f5b9c2caf9b" }, - "plenary.nvim": { "branch": "master", "commit": "857c5ac632080dba10aae49dba902ce3abf91b35" }, + "nvim-treesitter": { "branch": "master", "commit": "42fc28ba918343ebfd5565147a42a26580579482" }, + "render-markdown.nvim": { "branch": "main", "commit": "c3012098bd44381e3b96bbbbbcc21a54d45a286c" }, + "transparent.nvim": { "branch": "main", "commit": "8ac59883de84e9cd1850ea25cf087031c5ba7d54" }, "undotree": { "branch": "master", "commit": "15d91b0afe04ea9ba5cd53e30190d1602af9a925" }, "vim-tmux-navigator": { "branch": "master", "commit": "412c474e97468e7934b9c217064025ea7a69e05e" }, "which-key.nvim": { "branch": "main", "commit": "370ec46f710e058c9c1646273e6b225acf47cbed" } diff --git a/nvim/lua/plugins/init.lua b/nvim/lua/plugins/init.lua index 71214e8..58c85f0 100644 --- a/nvim/lua/plugins/init.lua +++ b/nvim/lua/plugins/init.lua @@ -3,5 +3,6 @@ return { "folke/which-key.nvim", { "folke/neoconf.nvim", cmd = "Neoconf" }, "mbbill/undotree", + "xiyaowong/transparent.nvim", } diff --git a/nvim/lua/plugins/render-markdown.lua b/nvim/lua/plugins/render-markdown.lua new file mode 100644 index 0000000..51761b4 --- /dev/null +++ b/nvim/lua/plugins/render-markdown.lua @@ -0,0 +1,9 @@ +return { + 'MeanderingProgrammer/render-markdown.nvim', + dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.nvim' }, -- if you use the mini.nvim suite + -- dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.icons' }, -- if you use standalone mini plugins + -- dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-tree/nvim-web-devicons' }, -- if you prefer nvim-web-devicons + ---@module 'render-markdown' + ---@type render.md.UserConfig + opts = {}, +} diff --git a/scripts/dotfiles.sh b/scripts/dotfiles.sh index 1a0675a..b62e4d4 100755 --- a/scripts/dotfiles.sh +++ b/scripts/dotfiles.sh @@ -9,5 +9,5 @@ rsync -av --delete ~/.config/zathura/ ~/.config/dotfiles/zathura cp -r ~/.config/X11/Xresources ~/.config/dotfiles/Xresources cd ~/.config/dotfiles && git add . -git commit -m "automated commit at ($TIMESTAMP)" +git commit -m "automated commit at $TIMESTAMP" git push myserver master |