mac updates
parent
67e6f0004f
commit
5757ca54fa
|
@ -0,0 +1,2 @@
|
||||||
|
vim.o.list = false
|
||||||
|
vim.o.tabstop = 4
|
|
@ -9,31 +9,31 @@ return {
|
||||||
-- pyright will be automatically installed with mason and loaded with lspconfig
|
-- pyright will be automatically installed with mason and loaded with lspconfig
|
||||||
rust_analyzer = {
|
rust_analyzer = {
|
||||||
mason = false,
|
mason = false,
|
||||||
settings = {
|
-- settings = {
|
||||||
["rust-analyzer"] = {
|
-- ["rust-analyzer"] = {
|
||||||
-- rustfmt = {
|
-- -- rustfmt = {
|
||||||
-- overrideCommand = { "leptosfmt", "--stdin", "--rustfmt" },
|
-- -- overrideCommand = { "leptosfmt", "--stdin", "--rustfmt" },
|
||||||
|
-- -- },
|
||||||
|
-- imports = {
|
||||||
|
-- granularity = {
|
||||||
|
-- group = "module",
|
||||||
|
-- },
|
||||||
|
-- },
|
||||||
|
-- cargo = {
|
||||||
|
-- buildScripts = {
|
||||||
|
-- enable = false,
|
||||||
|
-- },
|
||||||
|
-- },
|
||||||
|
-- files = {
|
||||||
|
-- excludeDirs = {
|
||||||
|
-- "pe-template",
|
||||||
|
-- },
|
||||||
|
-- },
|
||||||
|
-- procMacro = {
|
||||||
|
-- enable = true,
|
||||||
|
-- },
|
||||||
|
-- },
|
||||||
-- },
|
-- },
|
||||||
imports = {
|
|
||||||
granularity = {
|
|
||||||
group = "module",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
cargo = {
|
|
||||||
buildScripts = {
|
|
||||||
enable = false,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
files = {
|
|
||||||
excludeDirs = {
|
|
||||||
"pe-template",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
procMacro = {
|
|
||||||
enable = true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
tailwindcss = {
|
tailwindcss = {
|
||||||
init_options = {
|
init_options = {
|
||||||
|
|
|
@ -3,9 +3,19 @@ return {
|
||||||
"telescope.nvim",
|
"telescope.nvim",
|
||||||
dependencies = {
|
dependencies = {
|
||||||
"nvim-telescope/telescope-fzf-native.nvim",
|
"nvim-telescope/telescope-fzf-native.nvim",
|
||||||
|
"wesleimp/telescope-windowizer.nvim",
|
||||||
build = "make",
|
build = "make",
|
||||||
config = function()
|
config = function()
|
||||||
require("telescope").load_extension("fzf")
|
local telescope = require("telescope")
|
||||||
|
telescope.setup({
|
||||||
|
extentions = {
|
||||||
|
windowizer = {
|
||||||
|
find_cmd = "rg",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
telescope.load_extension("fzf")
|
||||||
|
telescope.load_extension("windowizer")
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue