i use arch btw
0
fork

Configure Feed

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

Default to 2 spaces instead of 4-space tabs, disable tree-sitter indent, format file

+13 -13
+10 -10
nvim/.config/nvim/lua/options.lua
··· 1 1 local opt = vim.opt 2 2 opt.number = true 3 3 opt.relativenumber = true 4 - opt.mouse = 'a' 4 + opt.mouse = "a" 5 5 opt.cursorline = true 6 6 opt.title = true 7 7 opt.timeoutlen = 1000 ··· 11 11 opt.laststatus = 3 12 12 opt.ignorecase = true 13 13 opt.smartcase = true 14 - opt.signcolumn = 'yes' 14 + opt.signcolumn = "yes" 15 15 opt.scrolloff = 8 16 16 opt.undofile = true 17 17 -- opt.clipboard = 'unnamedplus' 18 - opt.inccommand = 'split' 19 - opt.formatoptions = opt.formatoptions - 'o' 18 + opt.inccommand = "split" 19 + opt.formatoptions = opt.formatoptions - "o" 20 20 opt.termguicolors = true 21 - -- opt.expandtab = true 22 - opt.tabstop = 4 23 - opt.shiftwidth = 4 21 + opt.expandtab = true 22 + opt.tabstop = 2 23 + opt.shiftwidth = 2 24 24 25 25 local g = vim.g 26 - g.mapleader = ' ' 27 - g.user42 = 'bvan-den' 28 - g.mail42 = 'bvan-den@student.codam.nl' 26 + g.mapleader = " " 27 + g.user42 = "bvan-den" 28 + g.mail42 = "bvan-den@student.codam.nl"
+3 -3
nvim/.config/nvim/lua/plugins.lua
··· 111 111 enable = true, 112 112 disable = { "gitcommit" }, 113 113 }, 114 - indent = { 115 - enable = true, 116 - }, 114 + -- indent = { 115 + -- enable = true, 116 + -- }, 117 117 textobjects = { 118 118 select = { 119 119 enable = true,