Skip to content

Commit 38ebfd7

Browse files
committed
fix(my-account-ui): [CUSTMIC-] files not used
1 parent aebe62a commit 38ebfd7

11 files changed

Lines changed: 6 additions & 553 deletions

init.lua

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -185,21 +185,6 @@ require('lazy').setup({
185185
-- options to `gitsigns.nvim`.
186186
--
187187
-- See `:help gitsigns` to understand what the configuration keys do
188-
{ -- Adds git related signs to the gutter, as well as utilities for managing changes
189-
'lewis6991/gitsigns.nvim',
190-
---@module 'gitsigns'
191-
---@type Gitsigns.Config
192-
---@diagnostic disable-next-line: missing-fields
193-
opts = {
194-
signs = {
195-
add = { text = '+' }, ---@diagnostic disable-line: missing-fields
196-
change = { text = '~' }, ---@diagnostic disable-line: missing-fields
197-
delete = { text = '_' }, ---@diagnostic disable-line: missing-fields
198-
topdelete = { text = '' }, ---@diagnostic disable-line: missing-fields
199-
changedelete = { text = '~' }, ---@diagnostic disable-line: missing-fields
200-
},
201-
},
202-
},
203188

204189
-- NOTE: Plugins can also be configured to run Lua code when they are loaded.
205190
--
@@ -214,6 +199,7 @@ require('lazy').setup({
214199
--
215200
-- Then, because we use the `opts` key (recommended), the configuration runs
216201
-- after the plugin has been loaded as `require(MODULE).setup(opts)`.
202+
require 'kickstart.plugins.gitsigns', -- adds gitsigns recommended keymaps
217203

218204
{ -- Useful plugin to show you pending keybinds.
219205
'folke/which-key.nvim',
@@ -827,7 +813,6 @@ require('lazy').setup({
827813
-- require 'kickstart.plugins.lint',
828814
-- require 'kickstart.plugins.autopairs',
829815
-- require 'kickstart.plugins.neo-tree',
830-
-- require 'kickstart.plugins.gitsigns', -- adds gitsigns recommended keymaps
831816

832817
-- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
833818
-- This is the easiest way to modularize your config.

lazy-lock.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"gitsigns.nvim": { "branch": "main", "commit": "7c4faa3540d0781a28588cafbd4dd187a28ac6e3" },
77
"guess-indent.nvim": { "branch": "main", "commit": "84a4987ff36798c2fc1169cbaff67960aed9776f" },
88
"indent-blankline.nvim": { "branch": "master", "commit": "d28a3f70721c79e3c5f6693057ae929f3d9c0a03" },
9-
"lazy.nvim": { "branch": "main", "commit": "306a05526ada86a7b30af95c5cc81ffba93fef97" },
9+
"lazy.nvim": { "branch": "main", "commit": "85c7ff3711b730b4030d03144f6db6375044ae82" },
1010
"lsp_lines.nvim": { "branch": "main", "commit": "a92c755f182b89ea91bd8a6a2227208026f27b4d" },
1111
"mason-lspconfig.nvim": { "branch": "main", "commit": "a979821a975897b88493843301950c456a725982" },
1212
"mason-tool-installer.nvim": { "branch": "main", "commit": "443f1ef8b5e6bf47045cb2217b6f748a223cf7dc" },

lua/cmp-setup.lua

Lines changed: 0 additions & 49 deletions
This file was deleted.

lua/custom/plugins/init.lua

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,8 @@ vim.o.foldlevelstart = 99
3131
local set = vim.opt_local
3232
set.shiftwidth = 2
3333
vim.o.shiftwidth = 2
34+
35+
--
36+
vim.cmd "set statusline+=%{get(b:,'gitsigns_status','')}"
37+
3438
return {}

lua/keymaps.lua

Lines changed: 0 additions & 26 deletions
This file was deleted.

lua/lazy-bootstrap.lua

Lines changed: 0 additions & 17 deletions
This file was deleted.

lua/lazy-plugins.lua

Lines changed: 0 additions & 161 deletions
This file was deleted.

0 commit comments

Comments
 (0)