Add more astronvim plugins
This commit is contained in:
parent
6ec64f09c8
commit
2cf51b55ea
3 changed files with 22 additions and 2 deletions
2
.bin/.e
2
.bin/.e
|
@ -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)"
|
||||
|
|
|
@ -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" },
|
||||
}
|
||||
|
|
|
@ -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…
Reference in a new issue