1
0
Fork 0

Compare commits

..

3 commits

Author SHA1 Message Date
48a0c1f51b
media: update dns for container
All checks were successful
Update Flake / update-flake (push) Successful in 2m35s
Build / build-amd64-linux (push) Successful in 41s
Build / build-arm64-linux (push) Successful in 1m52s
2024-01-06 21:54:36 +01:00
f1bad4b2fb
nvim: RainbowDelimiter* is now handled by the theme 2024-01-06 21:54:20 +01:00
3d23ff3dae
Updates 2024-01-06 12:39:18 +01:00
3 changed files with 4 additions and 9 deletions

View file

@ -33,14 +33,6 @@
(highlight :IlluminatedWordText {:bg mod.colors.selection}) (highlight :IlluminatedWordText {:bg mod.colors.selection})
(highlight :IlluminatedWordRead {:bg mod.colors.selection}) (highlight :IlluminatedWordRead {:bg mod.colors.selection})
(highlight :IlluminatedWordWrite {:bg mod.colors.selection :underline true}) (highlight :IlluminatedWordWrite {:bg mod.colors.selection :underline true})
;; rainbow-delimiters
(highlight :RainbowDelimiterRed {:fg mod.colors.red})
(highlight :RainbowDelimiterYellow {:fg mod.colors.yellow})
(highlight :RainbowDelimiterBlue {:fg mod.colors.purple})
(highlight :RainbowDelimiterOrange {:fg mod.colors.orange})
(highlight :RainbowDelimiterGreen {:fg mod.colors.green})
(highlight :RainbowDelimiterViolet {:fg mod.colors.pink})
(highlight :RainbowDelimiterCyan {:fg mod.colors.cyan})
;; cmp ;; cmp
(highlight :PmenuSel {:fg mod.colors.white :bg "#363848"}) (highlight :PmenuSel {:fg mod.colors.white :bg "#363848"})
(highlight :CmpCursorLine {:bg "#363848"}) (highlight :CmpCursorLine {:bg "#363848"})

View file

@ -13,6 +13,9 @@
:NeogitTagMessage] :NeogitTagMessage]
:callback #(set vim.b.toggle_line_style 0) :callback #(set vim.b.toggle_line_style 0)
:group augroup}) :group augroup})
(aucmd :User {:pattern :NeogitCommitComplete (aucmd :User {:pattern [:NeogitCommitComplete
:NeogitPullComplete
:NeogitPushComplete
:NeogitStatusRefreshed]
:callback #(gitsigns.refresh) :callback #(gitsigns.refresh)
:group augroup})) :group augroup}))