Merge pull request #11 from nbur4556/primary-plugins

Primary plugins
This commit is contained in:
Nick Burt 2026-02-10 11:19:10 -06:00 committed by GitHub
commit 6a0a68f79c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 15 additions and 4 deletions

View File

@ -622,7 +622,8 @@ require('lazy').setup({
'lua-language-server', -- Lua Language server
'stylua', -- Used to format Lua code
-- You can add other tools here that you want Mason to install
'typescript-language-server', --Typescript Language Server
'typescript-language-server', -- Typescript Language Server
'omnisharp', -- C# Language Server
})
require('mason-tool-installer').setup { ensure_installed = ensure_installed }
@ -882,9 +883,9 @@ require('lazy').setup({
-- Uncomment any of the lines below to enable them (you will need to restart nvim).
--
-- require 'kickstart.plugins.debug',
-- require 'kickstart.plugins.indent_line',
require 'kickstart.plugins.indent_line',
-- require 'kickstart.plugins.lint',
-- require 'kickstart.plugins.autopairs',
require 'kickstart.plugins.autopairs',
-- require 'kickstart.plugins.neo-tree',
-- require 'kickstart.plugins.gitsigns', -- adds gitsigns recommend keymaps

View File

@ -0,0 +1,7 @@
return {
'stevearc/oil.nvim',
config = function()
require('oil').setup()
vim.keymap.set('n', '-', '<CMD>Oil<CR>', { desc = 'Open parent directory' })
end,
}

View File

@ -5,7 +5,7 @@ return {
---@type snacks.Config
opts = {
--TODO: Use this for a bit and compare to mini dashboard
--TODO: design a style and featuers for my dashboard
--TODO: design a style and featuers for my dashboard (add opening parent directory with Oil)
dashboard = { enabled = true },
gitbrowse = { enabled = true },
lazygit = { enabled = true },

View File

@ -0,0 +1,3 @@
return {
'christoomey/vim-tmux-navigator',
}