Add more astronvim plugins
This commit is contained in:
parent
6ec64f09c8
commit
2cf51b55ea
3 changed files with 22 additions and 2 deletions
.config/astronvim/lua/user/plugins
|
@ -1,3 +1,8 @@
|
|||
local wakatime_enabled = false
|
||||
if os.getenv("WAKATIME_API_KEY") then
|
||||
wakatime_enabled = true
|
||||
end
|
||||
|
||||
return {
|
||||
-- You can also add new plugins here as well:
|
||||
-- Add plugins, the lazy syntax
|
||||
|
@ -9,4 +14,12 @@ return {
|
|||
-- require("lsp_signature").setup()
|
||||
-- end,
|
||||
-- },
|
||||
|
||||
"apple/pkl-neovim",
|
||||
|
||||
{
|
||||
"wakatime/vim-wakatime",
|
||||
enabled = wakatime_enabled,
|
||||
lazy = false
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue