87 lines
2.1 KiB
Lua
87 lines
2.1 KiB
Lua
return {
|
|
-- Detect tabstop and shiftwidth automatically
|
|
"tpope/vim-sleuth",
|
|
{ "nvim-tree/nvim-web-devicons", lazy = true },
|
|
{
|
|
"mbbill/undotree",
|
|
config = function()
|
|
vim.g.undotree_WindowLayout = 2
|
|
vim.g.undotree_ShortIndicators = 1
|
|
vim.g.undotree_SetFocusWhenToggle = 1
|
|
end,
|
|
keys = {
|
|
{ "<leader>fu", vim.cmd.UndotreeToggle, desc = "Undo tree" },
|
|
},
|
|
},
|
|
{
|
|
-- Highlight word under cursor
|
|
"RRethy/vim-illuminate",
|
|
event = { "BufReadPost", "BufNewFile" },
|
|
opts = { delay = 200 },
|
|
config = function(_, opts)
|
|
require("illuminate").configure(opts)
|
|
end,
|
|
},
|
|
{
|
|
-- Color Picker
|
|
"uga-rosa/ccc.nvim",
|
|
event = "VeryLazy",
|
|
opts = {
|
|
auto_enable = true,
|
|
lsp = true,
|
|
},
|
|
},
|
|
-- Dotfiles management
|
|
{
|
|
"xvzc/chezmoi.nvim",
|
|
dependencies = { "nvim-lua/plenary.nvim", "alker0/chezmoi.vim" },
|
|
config = function()
|
|
require("chezmoi").setup({
|
|
{
|
|
edit = {
|
|
watch = false,
|
|
force = false,
|
|
},
|
|
notification = {
|
|
on_open = true,
|
|
on_apply = true,
|
|
on_watch = false,
|
|
},
|
|
telescope = {
|
|
select = { "<CR>" },
|
|
},
|
|
},
|
|
})
|
|
|
|
vim.api.nvim_create_autocmd({ "BufRead", "BufNewFile" }, {
|
|
-- INFO: this should be the same as $(chezmoi source-path)
|
|
pattern = { os.getenv("HOME") .. "/.local/share/chezmoi/chezmoi/*" },
|
|
callback = function()
|
|
vim.schedule(require("chezmoi.commands.__edit").watch)
|
|
end,
|
|
})
|
|
local telescope = require("telescope")
|
|
|
|
telescope.load_extension("chezmoi")
|
|
vim.keymap.set("n", "<leader>fz", telescope.extensions.chezmoi.find_files, { desc = "Find dotfile" })
|
|
end,
|
|
},
|
|
{
|
|
"pmizio/typescript-tools.nvim",
|
|
dependencies = { "nvim-lua/plenary.nvim", "neovim/nvim-lspconfig" },
|
|
opts = {
|
|
init_options = {
|
|
preferences = {
|
|
disableSuggestions = true,
|
|
},
|
|
},
|
|
settings = {
|
|
-- array of strings("fix_all"|"add_missing_imports"|"remove_unused"|
|
|
-- "remove_unused_imports"|"organize_imports") -- or string "all"
|
|
-- to include all supported code actions
|
|
-- specify commands exposed as code_actions
|
|
expose_as_code_action = "all",
|
|
},
|
|
},
|
|
},
|
|
}
|