local map = require("utils").map -- search for visual selection map {'v', '//', 'y/"'} map {'n', 'H', '^'} -- ex command map {'c', '', ''} map {'c', '', ''} -- auto expand brackets map {'i', '(;', '()O'} map {'i', '(,', '(),O'} map {'i', '{;', '{}O'} map {'i', '{,', '{},O'} map {'i', '[;', '[]O'} map {'i', '[,', '[],O'} -- toggle hybrid mode map {'n', 'h', ':set rnu!'} -- nvim-tree.lua map {'n', 'e', ':NvimTreeToggle'} -- Telescope map {'n', '', 'Telescope buffers'} map {'n', 'f', 'Telescope find_files'} map {'n', 'l', 'Telescope live_grep'} map {'n', ' gy', 'Telescope treesitter'} map {'n', 'wm', 'lua require("notes").list()'} map {'n', 'wt', 'lua require("notes").tags()'} -- neo formatter map {'n', 'p', ':Neoformat'} -- goyo mapping map {'n', ' w', ':Goyo'} -- spelling map {'n', ' se', ':set spell spelllang=en'} map {'n', ' sd', ':set spell spelllang=de'}