From b54c76d9a86bdc585d1ec2c7d6a0d8986a5f974b Mon Sep 17 00:00:00 2001 From: GlaDOS Date: Tue, 14 Nov 2023 19:20:29 +0100 Subject: [PATCH] astro --- nvim/init.lua | 11 ++++++++++- nvim/lazy-lock.json | 5 +++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 nvim/lazy-lock.json diff --git a/nvim/init.lua b/nvim/init.lua index 4a9ecce..484b8ed 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -12,13 +12,22 @@ end vim.opt.rtp:prepend(lazypath) plugins = { + { + 'maxmx03/dracula.nvim', + lazy = false, + config = function () + local dracula = require 'dracula' + dracula.setup() + vim.cmd.colorscheme 'dracula' + end + }, { "nvim-treesitter/nvim-treesitter", build = ":TSUpdate", config = function () local configs = require("nvim-treesitter.configs") configs.setup({ - ensure_installed = { "c", "rust", "lua", "vim", "vimdoc", "javascript", "html" }, + ensure_installed = { "c", "rust", "lua", "vim", "vimdoc", "javascript", "html", "astro" }, sync_install = false, highlight = { enable = true }, indent = { enable = true }, diff --git a/nvim/lazy-lock.json b/nvim/lazy-lock.json new file mode 100644 index 0000000..87667ec --- /dev/null +++ b/nvim/lazy-lock.json @@ -0,0 +1,5 @@ +{ + "dracula.nvim": { "branch": "master", "commit": "2f396b6ba988ad4b3961c2e40d1b9ae436b8c26c" }, + "lazy.nvim": { "branch": "main", "commit": "96584866b9c5e998cbae300594d0ccfd0c464627" }, + "nvim-treesitter": { "branch": "master", "commit": "c0da2013d1cef768c00f3f0b7f365fe19a10bca3" } +} \ No newline at end of file