i use arch btw
0
fork

Configure Feed

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

Don't format with jsonls, re-add vim-sleuth and add editorconfig.nvim

+5 -4
+1 -2
nvim/.config/nvim/lua/options.lua
··· 1 - -- options 2 1 local opt = vim.opt 3 2 opt.number = true 4 3 opt.relativenumber = true ··· 13 12 opt.ignorecase = true 14 13 opt.smartcase = true 15 14 opt.signcolumn = 'yes' 16 - opt.scrolloff = 16 15 + opt.scrolloff = 8 17 16 opt.undofile = true 18 17 -- opt.clipboard = 'unnamedplus' 19 18 opt.inccommand = 'split'
+4 -2
nvim/.config/nvim/lua/plugins.lua
··· 253 253 local lsp_formatting = function(bufnr) 254 254 vim.lsp.buf.format({ 255 255 filter = function(client) 256 - return client.name ~= 'tsserver' 256 + return client.name ~= 'tsserver' and client.name ~= 'jsonls' 257 257 end, 258 258 bufnr = bufnr, 259 259 }) ··· 410 410 -- end, 411 411 -- } 412 412 413 - -- use { 'tpope/vim-sleuth' } 413 + use { 'tpope/vim-sleuth' } 414 414 415 415 -- use { 'JopjeKnopje/42header_codam' } 416 416 use { ··· 496 496 }) 497 497 end, 498 498 } 499 + 500 + use { 'gpanders/editorconfig.nvim' } 499 501 500 502 if packer_bootstrap then 501 503 require('packer').sync()