Compare commits
3 commits
Author | SHA1 | Date | |
---|---|---|---|
dd701b268a | |||
654f200459 | |||
![]() |
bbf98cedf2 |
7 changed files with 59 additions and 13 deletions
|
@ -7,6 +7,7 @@ return {
|
||||||
spell = false, -- sets vim.opt.spell
|
spell = false, -- sets vim.opt.spell
|
||||||
signcolumn = "auto", -- sets vim.opt.signcolumn to auto
|
signcolumn = "auto", -- sets vim.opt.signcolumn to auto
|
||||||
wrap = false, -- sets vim.opt.wrap
|
wrap = false, -- sets vim.opt.wrap
|
||||||
|
shell = "/usr/bin/fish"
|
||||||
},
|
},
|
||||||
g = {
|
g = {
|
||||||
mapleader = " ", -- sets vim.g.mapleader
|
mapleader = " ", -- sets vim.g.mapleader
|
||||||
|
|
5
plugins/codeium.lua
Normal file
5
plugins/codeium.lua
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
return {
|
||||||
|
--- 'Exafunction/codeium.vim',
|
||||||
|
--- event = 'BufEnter'
|
||||||
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
return {
|
||||||
"m4xshen/hardtime.nvim",
|
"m4xshen/hardtime.nvim",
|
||||||
dependencies = { "MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim" },
|
dependencies = { "MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim" },
|
||||||
opts = {}
|
opts = {}
|
||||||
},
|
}
|
||||||
|
|
19
plugins/mason-lspconfig.lua
Normal file
19
plugins/mason-lspconfig.lua
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
-- use mason-lspconfig to configure LSP installations
|
||||||
|
return {
|
||||||
|
"williamboman/mason-lspconfig.nvim",
|
||||||
|
opts = {
|
||||||
|
automatic_installation = true,
|
||||||
|
ensure_installed = {
|
||||||
|
"astro",
|
||||||
|
"svelte",
|
||||||
|
"tailwindcss",
|
||||||
|
"rust_analyzer",
|
||||||
|
"jsonls",
|
||||||
|
"tsserver",
|
||||||
|
"html",
|
||||||
|
"taplo",
|
||||||
|
-- "mdx_analyzer",
|
||||||
|
--"lua_ls"
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
|
@ -1,10 +0,0 @@
|
||||||
return {
|
|
||||||
"simrat39/rust-tools.nvim",
|
|
||||||
opts = {
|
|
||||||
tools = {
|
|
||||||
inlay_hints = {
|
|
||||||
auto = false,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
26
plugins/rustaceannvim.lua.old
Normal file
26
plugins/rustaceannvim.lua.old
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
return {
|
||||||
|
"mrcjkb/rustaceanvim",
|
||||||
|
event = "BufReadPost",
|
||||||
|
version = "^3", -- Recommended
|
||||||
|
ft = { "rust" },
|
||||||
|
config = function()
|
||||||
|
vim.g.rustaceanvim = {
|
||||||
|
-- Plugin configuration
|
||||||
|
-- tools = {},
|
||||||
|
-- LSP configuration
|
||||||
|
server = {
|
||||||
|
on_attach = function(client, bufnr)
|
||||||
|
-- you can also put keymaps in here
|
||||||
|
vim.lsp.inlay_hint.enable(bufnr, true)
|
||||||
|
end,
|
||||||
|
-- settings = {
|
||||||
|
-- -- rust-analyzer language server configuration
|
||||||
|
-- ["rust-analyzer"] = {},
|
||||||
|
-- },
|
||||||
|
-- },
|
||||||
|
-- -- DAP configuration
|
||||||
|
-- dap = {},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
end,
|
||||||
|
}
|
|
@ -3,7 +3,12 @@ return {
|
||||||
opts = function(_, opts)
|
opts = function(_, opts)
|
||||||
-- add more things to the ensure_installed table protecting against community packs modifying it
|
-- add more things to the ensure_installed table protecting against community packs modifying it
|
||||||
opts.ensure_installed = require("astronvim.utils").list_insert_unique(opts.ensure_installed, {
|
opts.ensure_installed = require("astronvim.utils").list_insert_unique(opts.ensure_installed, {
|
||||||
-- "lua"
|
"astro",
|
||||||
|
"yaml",
|
||||||
|
"svelte",
|
||||||
|
"dockerfile",
|
||||||
|
"json5",
|
||||||
|
"markdown"
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue