aboutsummaryrefslogtreecommitdiff
path: root/lua/plugins/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/plugins/init.lua')
-rw-r--r--lua/plugins/init.lua40
1 files changed, 40 insertions, 0 deletions
diff --git a/lua/plugins/init.lua b/lua/plugins/init.lua
new file mode 100644
index 0000000..59da877
--- /dev/null
+++ b/lua/plugins/init.lua
@@ -0,0 +1,40 @@
+require("lazy").setup({
+ "tpope/vim-fugitive",
+ "tpope/vim-sleuth",
+ { "numToStr/Comment.nvim", opts = {} },
+
+ {
+ "lewis6991/gitsigns.nvim",
+ opts = require("plugins.opts.misc").gitsigns,
+ },
+
+ {
+ "nvim-lualine/lualine.nvim",
+ dependencies = { 'nvim-tree/nvim-web-devicons' },
+
+ opts = require "plugins.opts.lualine",
+ },
+
+ {
+ "tiagovla/tokyodark.nvim",
+ lazy = false,
+
+ opts = { transparent_background = true },
+ config = function(_, opts)
+ require("tokyodark").setup(opts)
+ vim.cmd.colorscheme "tokyodark"
+ end,
+ },
+
+ {
+ "nvim-treesitter/nvim-treesitter", build = ":TSUpdate",
+ event = { "BufReadPost", "BufNewFile" },
+ cmd = { "TSInstall", "TSBufEnable", "TSBufDisable", "TSModuleInfo" },
+
+ opts = require "plugins.opts.treesitter",
+ config = function(_, opts)
+ require("nvim-treesitter.configs").setup(opts)
+ end,
+ },
+
+})