all repos

init.lua @ 405e1b008adcb0ea3e8ad66958590c93a565eb14

my nvim config
3 files changed, 1 insertions(+), 2 deletions(-)
feat: use building editorconfig support instead of plugin
Author: Smirnov Oleksandr ss2316544@gmail.com
Committed at: 2023-04-12 22:11:25 +0300
Parent: 453733f
M lazy-lock.json

@@ -7,7 +7,6 @@ "cmp-path": { "branch": "main", "commit": "91ff86cd9c29299a64f968ebb45846c485725f23" },

"cmp_luasnip": { "branch": "master", "commit": "18095520391186d634a0045dacaa346291096566" }, "codeium.vim": { "branch": "main", "commit": "41b718e550b26a34075b79a50128cf853b2b917e" }, "debugprint.nvim": { "branch": "main", "commit": "963033ea7926ce84d7302a3c2fb8c6147f6e3bec" }, - "editorconfig.nvim": { "branch": "master", "commit": "5b9e303e1d6f7abfe616ce4cc8d3fffc554790bf" }, "fidget.nvim": { "branch": "main", "commit": "0ba1e16d07627532b6cae915cc992ecac249fb97" }, "friendly-snippets": { "branch": "main", "commit": "8d91ba2dc2421a54981115f61b914974f938fa77" }, "gitsigns.nvim": { "branch": "main", "commit": "372d5cb485f2062ac74abc5b33054abac21d8b58" },
M lua/core/options.lua

@@ -1,4 +1,5 @@

vim.g.undotree_DiffAutoOpen = 0 +vim.g.editorconfig = true -- leader vim.g.mapleader = " "
M lua/plugins.lua

@@ -4,7 +4,6 @@ "kyazdani42/nvim-web-devicons",

{ "olexsmir/gopher.nvim", ft = "go", dev = true }, { "mbbill/undotree", cmd = "UndotreeToggle" }, { "tpope/vim-surround", keys = { "c", "d", "y" } }, - { "gpanders/editorconfig.nvim", event = "BufRead" }, { "tpope/vim-repeat", event = "VeryLazy" }, { "numToStr/Comment.nvim",