mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-07-18 17:54:49 +02:00
enc: add neocodeium config for replace codeium.vim
This commit is contained in:
parent
64e62e59ba
commit
38bf58ad63
61 changed files with 2942 additions and 1051 deletions
|
@ -65,7 +65,7 @@ local function gradle_new_project()
|
|||
end, 4000) -- Delay is set in milliseconds (3,000ms = 3 seconds)
|
||||
end
|
||||
-- Run the delayed quit function
|
||||
-- delayed_quit()
|
||||
delayed_quit()
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -59,11 +59,11 @@ local function create_java_class()
|
|||
-- Format direktori dan path file berdasarkan input pengguna
|
||||
local package_dir = nil
|
||||
if package_name then
|
||||
-- if is_maven_project() then
|
||||
package_dir = string.format("src/main/java/%s", package_name:gsub("%.", "/"))
|
||||
-- else
|
||||
-- package_dir = string.format("app/src/main/java/%s", package_name:gsub("%.", "/"))
|
||||
-- end
|
||||
if is_maven_project() then
|
||||
package_dir = string.format("src/main/java/%s", package_name:gsub("%.", "/"))
|
||||
else
|
||||
package_dir = string.format("app/src/main/java/%s", package_name:gsub("%.", "/"))
|
||||
end
|
||||
if vim.fn.isdirectory(package_dir) == 0 then
|
||||
vim.fn.mkdir(package_dir, "p")
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue