dotfiles
1

Configure Feed

Select the types of activity you want to include in your feed.

Tab/S-Tab to indent/dedent

Juan Nunez-Iglesias (Jun 20, 2026, 4:28 PM +0200) 6f1e38aa 4cc99c6b

+4
+4
nvim/init.lua
··· 158 158 -- vim.opt.expandtab = true 159 159 vim.opt.autoindent = true 160 160 161 + -- remap tab/shift-tab in insert to indent/dedent 162 + vim.keymap.set('i', '<Tab>', '<C-T>') 163 + vim.keymap.set('i', '<S-Tab>', '<C-D>') 164 + 161 165 -- formatoptions: start from default and remove 't' 162 166 -- (don't auto-wrap text while typing) 163 167 vim.opt.formatoptions:remove('t')