Compare commits

...

2 Commits

Author SHA1 Message Date
Sanchayan Maity 3f5b09dd7d
nvim: after/plugin/mini: Enable wrap around with hunk navigation 2024-04-17 18:39:08 +05:30
Sanchayan Maity 56301c198b
chrome/chromium: Update platform flags
Platform hint seems to be broken and not work any more.
https://issues.chromium.org/issues/329678163
2024-04-17 11:08:07 +05:30
3 changed files with 11 additions and 6 deletions

View File

@ -1,4 +1,5 @@
--ozone-platform-hint=auto
--enable-feature=UseOzonePlatform
--ozone-platform=wayland
--ignore-gpu-blocklist
--enable-gpu-rasterization
--enable-zero-copy

View File

@ -1,4 +1,5 @@
--ozone-platform-hint=auto
--enable-feature=UseOzonePlatform
--ozone-platform=wayland
--ignore-gpu-blocklist
--enable-gpu-rasterization
--enable-zero-copy

View File

@ -3,10 +3,6 @@ local opts = { noremap=true, silent=true, unique=true }
-- Diff hunks
require('mini.diff').setup({
view = {
style = 'sign',
signs = { add = '+', change = '~', delete = '-' },
},
mappings = {
textobject = 'gh',
goto_prev = '[c',
@ -16,6 +12,13 @@ require('mini.diff').setup({
apply = '<Leader>hs',
reset = '<Leader>hr',
},
options = {
wrap_goto = true,
},
view = {
style = 'sign',
signs = { add = '+', change = '~', delete = '-' },
},
})
-- File System
require('mini.files').setup({