diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-03-01 07:36:14 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-03-01 10:11:03 +0530 |
commit | 573066d74e9ac58377863e215abd061ba10ed6ab (patch) | |
tree | 187e3de7e2a906092abd2674f14aa98a9eeceb03 /lua/plugins/init.lua | |
parent | ae3fbcc55c32c05225a5f911fb6a991a8c214ca8 (diff) |
plugins: init
Diffstat (limited to 'lua/plugins/init.lua')
-rw-r--r-- | lua/plugins/init.lua | 40 |
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, + }, + +}) |