Change shiftwidth to 4, fix indentation in lua files. Disable TS in help pages (0.8 bug)

This commit is contained in:
Evie Litherland-Smith 2022-11-02 13:40:30 +00:00
parent f848fabc23
commit 4cba0df0be
13 changed files with 307 additions and 304 deletions

View file

@ -12,6 +12,7 @@ vim.opt.updatetime=500
vim.opt.mouse="nv"
vim.opt.termguicolors=true
vim.opt.shiftwidth=4
vim.opt.number=true
vim.opt.relativenumber=true
vim.opt.listchars = { trail = '.', tab = '>_' }

View file

@ -39,7 +39,7 @@ local lsp_flags = {
debounce_text_changes = 150,
}
-- Setup nvim-cmp.
-- Setup nvim-cmp.
local cmp = require'cmp'
cmp.setup({

View file

@ -13,6 +13,7 @@ require'nvim-treesitter.configs'.setup {
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
disable = {'help'},
},
}

View file

@ -53,6 +53,7 @@ require('packer').startup(function(use)
}
use {
'https://github.com/lewis6991/gitsigns.nvim.git',
tag = 'release',
config = function ()
require 'config_plugins.config_gitsigns'
end