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 --ignore-gpu-blocklist
--enable-gpu-rasterization --enable-gpu-rasterization
--enable-zero-copy --enable-zero-copy

View file

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

View file

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