mirror of
https://github.com/eRgo35/dots.git
synced 2025-12-16 07:26:12 +01:00
git config plus zoxide plugin
This commit is contained in:
@@ -1,8 +0,0 @@
|
||||
[user]
|
||||
email = mike@c2yz.com
|
||||
name = Michael Czyż
|
||||
signingkey = 78D4829A477DAB25
|
||||
[commit]
|
||||
gpgsign = true
|
||||
[push]
|
||||
default = simple
|
||||
@@ -1,8 +1,10 @@
|
||||
[user]
|
||||
email = mike@c2yz.com
|
||||
name = Michael Czyż
|
||||
signingkey = 78D4829A477DAB25
|
||||
email = mike@c2yz.com
|
||||
name = Michael Czyż
|
||||
signingkey = 78D4829A477DAB25
|
||||
[commit]
|
||||
gpgsign = true
|
||||
gpgsign = true
|
||||
[push]
|
||||
default = simple
|
||||
default = simple
|
||||
[rerere]
|
||||
enabled = true
|
||||
|
||||
@@ -3,17 +3,14 @@ local overrides = require("custom.configs.overrides")
|
||||
---@type NvPluginSpec[]
|
||||
local plugins = {
|
||||
|
||||
-- Override plugin definition options
|
||||
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
config = function()
|
||||
require "plugins.configs.lspconfig"
|
||||
require "custom.configs.lspconfig"
|
||||
end, -- Override to setup mason-lspconfig
|
||||
end,
|
||||
},
|
||||
|
||||
-- override plugin configs
|
||||
{
|
||||
"williamboman/mason.nvim",
|
||||
opts = {
|
||||
@@ -33,14 +30,6 @@ local plugins = {
|
||||
opts = overrides.nvimtree,
|
||||
},
|
||||
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
config = function()
|
||||
require "plugins.configs.lspconfig"
|
||||
require "custom.configs.lspconfig"
|
||||
end,
|
||||
},
|
||||
|
||||
{
|
||||
"rust-lang/rust.vim",
|
||||
ft = "rust",
|
||||
@@ -67,7 +56,12 @@ local plugins = {
|
||||
return M
|
||||
end,
|
||||
},
|
||||
-- Install a plugin
|
||||
|
||||
{
|
||||
"nanotee/zoxide.vim",
|
||||
lazy = false,
|
||||
},
|
||||
|
||||
{
|
||||
"max397574/better-escape.nvim",
|
||||
event = "InsertEnter",
|
||||
@@ -78,17 +72,10 @@ local plugins = {
|
||||
|
||||
{
|
||||
"stevearc/conform.nvim",
|
||||
-- for users those who want auto-save conform + lazyloading!
|
||||
-- event = "BufWritePre"
|
||||
config = function()
|
||||
require "custom.configs.conform"
|
||||
end,
|
||||
},
|
||||
-- To make a plugin not be loaded
|
||||
-- {
|
||||
-- "NvChad/nvim-colorizer.lua",
|
||||
-- enabled = false
|
||||
-- },
|
||||
|
||||
-- All NvChad plugins are lazy-loaded by default
|
||||
-- For a plugin to be loaded, you will need to set either `ft`, `cmd`, `keys`, `event`, or set `lazy = false`
|
||||
|
||||
Reference in New Issue
Block a user