Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
barbariand committed Nov 12, 2024
1 parent 418c31a commit 8c2b5bf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions lua/custom/plugins/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ return {
{
"NMAC427/guess-indent.nvim",
config = function()
require("guess-indent").setup { override_editorconfig = false}
require("guess-indent").setup({ override_editorconfig = false })
end,
},
{ 'editorconfig/editorconfig-vim'},
{ "gpanders/editorconfig.nvim", config = true },
{ "folke/todo-comments.nvim", config = true },
{ "RaafatTurki/hex.nvim", config = true },
{
Expand Down
9 changes: 4 additions & 5 deletions plugin/settings.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,12 @@ g.noendofline = "binary"
opt.inccommand = "split"
opt.ignorecase = true
opt.smartcase = true
g.editorconfig = true

-- Indentation
-- opt.tabstop = 4
-- opt.shiftwidth = 2
-- opt.expandtab = false
-- opt.breakindent = true
opt.tabstop = 4
opt.shiftwidth = 2
opt.expandtab = false
opt.breakindent = true

-- Timings
opt.updatetime = 250
Expand Down

0 comments on commit 8c2b5bf

Please sign in to comment.