From afcfe84556caa27b015565ef00d8306225558dae Mon Sep 17 00:00:00 2001 From: tiagovla Date: Thu, 14 Mar 2024 22:32:16 -0400 Subject: [PATCH] feat: add minimal config --- .github/config.lua | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/config.lua diff --git a/.github/config.lua b/.github/config.lua new file mode 100644 index 0000000..aad9398 --- /dev/null +++ b/.github/config.lua @@ -0,0 +1,37 @@ +local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" +if not vim.loop.fs_stat(lazypath) then + vim.fn.system({ + "git", + "clone", + "--filter=blob:none", + "https://github.com/folke/lazy.nvim.git", + "--branch=stable", + lazypath, + }) +end + +vim.opt.rtp:prepend(lazypath) + +require("lazy").setup({ + { + "tiagovla/tokyodark.nvim", + config = function() + require("tokyodark").setup() + require("tokyodark").colorscheme() + end, + }, + { + "nvim-treesitter/nvim-treesitter", + build = ":TSUpdate", + config = function() + local treesitter = require("nvim-treesitter.configs") + treesitter.setup({ + ensure_installed = "all", + highlight = { + enable = true, + additional_vim_regex_highlighting = false, + }, + }) + end, + }, +})