astro
This commit is contained in:
parent
6157f0e92b
commit
b54c76d9a8
2 changed files with 15 additions and 1 deletions
|
@ -12,13 +12,22 @@ end
|
||||||
vim.opt.rtp:prepend(lazypath)
|
vim.opt.rtp:prepend(lazypath)
|
||||||
|
|
||||||
plugins = {
|
plugins = {
|
||||||
|
{
|
||||||
|
'maxmx03/dracula.nvim',
|
||||||
|
lazy = false,
|
||||||
|
config = function ()
|
||||||
|
local dracula = require 'dracula'
|
||||||
|
dracula.setup()
|
||||||
|
vim.cmd.colorscheme 'dracula'
|
||||||
|
end
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"nvim-treesitter/nvim-treesitter",
|
"nvim-treesitter/nvim-treesitter",
|
||||||
build = ":TSUpdate",
|
build = ":TSUpdate",
|
||||||
config = function ()
|
config = function ()
|
||||||
local configs = require("nvim-treesitter.configs")
|
local configs = require("nvim-treesitter.configs")
|
||||||
configs.setup({
|
configs.setup({
|
||||||
ensure_installed = { "c", "rust", "lua", "vim", "vimdoc", "javascript", "html" },
|
ensure_installed = { "c", "rust", "lua", "vim", "vimdoc", "javascript", "html", "astro" },
|
||||||
sync_install = false,
|
sync_install = false,
|
||||||
highlight = { enable = true },
|
highlight = { enable = true },
|
||||||
indent = { enable = true },
|
indent = { enable = true },
|
||||||
|
|
5
nvim/lazy-lock.json
Normal file
5
nvim/lazy-lock.json
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"dracula.nvim": { "branch": "master", "commit": "2f396b6ba988ad4b3961c2e40d1b9ae436b8c26c" },
|
||||||
|
"lazy.nvim": { "branch": "main", "commit": "96584866b9c5e998cbae300594d0ccfd0c464627" },
|
||||||
|
"nvim-treesitter": { "branch": "master", "commit": "c0da2013d1cef768c00f3f0b7f365fe19a10bca3" }
|
||||||
|
}
|
Loading…
Reference in a new issue