mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-06-23 21:58:36 +02:00
bug: guess indent not working
This commit is contained in:
parent
1268c5006f
commit
0029de4b5a
1 changed files with 7 additions and 2 deletions
9
init.lua
9
init.lua
|
@ -23,7 +23,7 @@ vim.o.mouse = 'a'
|
|||
-- Sync clipboard between OS and Neovim.
|
||||
-- Remove this option if you want your OS clipboard to remain independent.
|
||||
-- See `:help 'clipboard'`
|
||||
vim.o.clipboard = 'unnamedplus'
|
||||
-- vim.o.clipboard = 'unnamedplus'
|
||||
|
||||
-- Enable break indent
|
||||
vim.o.breakindent = true
|
||||
|
@ -95,7 +95,12 @@ vim.opt.rtp:prepend(lazypath)
|
|||
-- as they will be available in your neovim runtime.
|
||||
require('lazy').setup({
|
||||
-- NOTE: First, some plugins that don't require any configuration
|
||||
'NMAC427/guess-indent.nvim', -- Detect tabstop and shiftwidth automatically
|
||||
{
|
||||
'NMAC427/guess-indent.nvim', -- Detect tabstop and shiftwidth automatically
|
||||
config = function()
|
||||
require('guess-indent').setup {}
|
||||
end,
|
||||
},
|
||||
|
||||
-- Git related plugins
|
||||
'tpope/vim-fugitive',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue