dotfiles
1

Configure Feed

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

Add vim-sleuth to autodetect indents

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

+7 -4
+5 -3
nvim/init.lua
··· 11 11 12 12 -- plugins 13 13 require("lazy").setup({ 14 + { "tpope/vim-sleuth" }, 14 15 { 15 16 "nvim-telescope/telescope.nvim", 16 17 dependencies = { "nvim-lua/plenary.nvim" }, ··· 151 152 vim.opt.linebreak = true 152 153 vim.opt.showbreak = '______' 153 154 154 - vim.opt.tabstop = 4 155 - vim.opt.shiftwidth = 4 156 - vim.opt.expandtab = true 155 + -- indentation options: not needed with tpope/vim-sleuth 156 + -- vim.opt.tabstop = 4 157 + -- vim.opt.shiftwidth = 4 158 + -- vim.opt.expandtab = true 157 159 vim.opt.autoindent = true 158 160 159 161 -- formatoptions: start from default and remove 't'
+2 -1
nvim/lazy-lock.json
··· 3 3 "lazy.nvim": { "branch": "main", "commit": "85c7ff3711b730b4030d03144f6db6375044ae82" }, 4 4 "peek.nvim": { "branch": "master", "commit": "5820d937d5414baea5f586dc2a3d912a74636e5b" }, 5 5 "plenary.nvim": { "branch": "master", "commit": "74b06c6c75e4eeb3108ec01852001636d85a932b" }, 6 - "telescope.nvim": { "branch": "master", "commit": "9377230aa5305d9e9aca4ed8dadf1070fb4aa9fc" } 6 + "telescope.nvim": { "branch": "master", "commit": "9377230aa5305d9e9aca4ed8dadf1070fb4aa9fc" }, 7 + "vim-sleuth": { "branch": "master", "commit": "be69bff86754b1aa5adcbb527d7fcd1635a84080" } 7 8 }