Refactored home and hardware files, and added new plugins to neovim.

This commit is contained in:
2025-08-24 11:38:11 -04:00
parent 1564a9f1ec
commit 761525421d
29 changed files with 180 additions and 90 deletions

View File

@@ -0,0 +1,32 @@
local vim = vim
local host = vim.loop.os_gethostname()
require('telescope').load_extension('project')
require('telescope').load_extension('ui-select')
require('telescope').setup{
defaults = {
mappings = {
i = {
["<C-u>"] = false,
["<C-d>"] = false,
},
},
},
pickers = {
-- Default configuration for builtin pickers goes here:
-- picker_name = {
-- picker_config_key = value,
-- ...
-- }
-- Now the picker_config_key will be applied every time you call this
-- builtin picker
},
extensions = {
["ui-select"] = {
require("telescope.themes").get_dropdown {
-- even more opts
}
},
}
}