This commit is contained in:
asep komarudin 2023-09-27 12:12:53 +07:00
parent 777e7a4f61
commit af5d7b77f9
4 changed files with 18 additions and 18 deletions

View file

@ -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()

View file

@ -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,

View file

@ -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,