mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-29 20:14:28 +02:00
update
This commit is contained in:
parent
777e7a4f61
commit
af5d7b77f9
4 changed files with 18 additions and 18 deletions
|
@ -2,7 +2,7 @@ vim.g.codeium_disable_bindings = 1
|
|||
return {
|
||||
"Exafunction/codeium.vim",
|
||||
enabled = true,
|
||||
event = "InsertEnter",
|
||||
event = "BufRead",
|
||||
config = function()
|
||||
-- Change '<C-g>' here to any keycode you like.
|
||||
vim.keymap.set("i", "<C-g>", function()
|
||||
|
|
|
@ -229,7 +229,7 @@ return {
|
|||
-- for auto detection file and run code
|
||||
{
|
||||
"CRAG666/code_runner.nvim",
|
||||
event = "BufRead",
|
||||
event = "InsertEnter",
|
||||
-- dependencies = "nvim-lua/plenary.nvim",
|
||||
cmd = { "RunCode", "RunFile", "RunProject", "RunClose" },
|
||||
config = function()
|
||||
|
@ -312,7 +312,7 @@ return {
|
|||
}, -- mini scrollview
|
||||
{
|
||||
"karb94/neoscroll.nvim",
|
||||
event = "BufRead",
|
||||
event = "InsertEnter",
|
||||
config = function()
|
||||
require("user.neoscroll")
|
||||
end,
|
||||
|
|
|
@ -12,7 +12,7 @@ return {
|
|||
{
|
||||
"nvim-lualine/lualine.nvim",
|
||||
-- dependencies = { "kyazdani42/nvim-web-devicons", opt = true },
|
||||
event = "BufRead",
|
||||
event = "BufWinEnter",
|
||||
config = function()
|
||||
require("user.lualine")
|
||||
end,
|
||||
|
@ -60,7 +60,7 @@ return {
|
|||
"akinsho/toggleterm.nvim",
|
||||
lazy = true,
|
||||
cmd = { "ToggleTerm" },
|
||||
event = "BufRead",
|
||||
event = "InsertEnter",
|
||||
config = function()
|
||||
require("user.toggleterm")
|
||||
end,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue