vim: disable lazy loading, remove yaml stuff, add new plugins
This commit is contained in:
parent
68b46c4db8
commit
21479030d5
|
@ -15,7 +15,7 @@ vim.opt.rtp:prepend(lazypath)
|
|||
vim.g.mapleader = " "
|
||||
|
||||
require("lazy").setup("plugins", {
|
||||
defaults = { lazy = true },
|
||||
defaults = { lazy = false },
|
||||
install = { colorscheme = { "tokyonight" } },
|
||||
checker = { enabled = false },
|
||||
change_detection = { notify = false },
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
require("config.settings")
|
||||
require("config.yaml")
|
||||
-- require("config.yaml")
|
||||
|
||||
-- Remaps
|
||||
vim.keymap.set("n", "<leader><C-e>", vim.cmd.Ex)
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
vim.api.nvim_create_autocmd("FileType", {
|
||||
pattern = "yaml",
|
||||
callback = function()
|
||||
vim.opt_local.expandtab = false
|
||||
end
|
||||
})
|
|
@ -0,0 +1,6 @@
|
|||
local fugitive = {
|
||||
'tpope/vim-fugitive',
|
||||
}
|
||||
|
||||
return fugitive
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
local gitsigns = {
|
||||
'lewis6991/gitsigns.nvim',
|
||||
}
|
||||
|
||||
return gitsigns
|
||||
|
|
@ -1,10 +1,9 @@
|
|||
local monokai = {
|
||||
'tanvirtin/monokai.nvim',
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
config = function()
|
||||
vim.cmd([[colorscheme monokai]])
|
||||
end
|
||||
}
|
||||
|
||||
return { monokai }
|
||||
|
||||
|
|
|
@ -6,3 +6,4 @@ local telescope = {
|
|||
}
|
||||
|
||||
return { telescope }
|
||||
|
||||
|
|
Loading…
Reference in New Issue