Add more astronvim plugins

This commit is contained in:
Tobias Reisinger 2024-02-28 02:42:47 +01:00
parent 6ec64f09c8
commit 2cf51b55ea
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
3 changed files with 22 additions and 2 deletions

View file

@ -4,7 +4,7 @@ declare -A mapper=(
[".e"]="$HOME/.bin/.e"
[".t"]="$HOME/.bin/.t"
["alacritty"]="$HOME/.config/alacritty/alacritty.toml"
["astronvim"]="$HOME/.config/astronvim/lua/user/init.lua"
["astronvim"]="$HOME/.config/astronvim/lua/user/"
["autoinstall.toml"]="$HOME/.config/autoinstall.toml"
["autostart.toml"]="$HOME/.config/autostart.toml"
["backup"]="$HOME/.bin/host-backup-$(cat /proc/sys/kernel/hostname)"

View file

@ -5,5 +5,12 @@ return {
-- available plugins can be found at https://github.com/AstroNvim/astrocommunity
{ import = "astrocommunity.colorscheme.dracula-nvim" },
-- { import = "astrocommunity.completion.copilot-lua-cmp" },
{
"Mofiqul/dracula.nvim",
opts = {
transparent_bg = true,
},
},
{ import = "astrocommunity.completion.copilot-lua-cmp" },
}

View file

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