tailwind in rust
This commit is contained in:
parent
9ddd428ec6
commit
6ee690987a
3 changed files with 75 additions and 53 deletions
|
@ -10,9 +10,11 @@ return {
|
|||
},
|
||||
{
|
||||
"jinzhongjia/LspUI.nvim",
|
||||
config = true,
|
||||
},
|
||||
{
|
||||
"VidocqH/lsp-lens.nvim",
|
||||
config = true,
|
||||
},
|
||||
{
|
||||
"j-hui/fidget.nvim",
|
||||
|
@ -21,8 +23,6 @@ return {
|
|||
"neovim/nvim-lspconfig",
|
||||
},
|
||||
},
|
||||
"jose-elias-alvarez/null-ls.nvim",
|
||||
"jay-babu/mason-null-ls.nvim",
|
||||
{
|
||||
"SmiteshP/nvim-navic",
|
||||
dependencies = {"neovim/nvim-lspconfig"},
|
||||
|
@ -33,7 +33,7 @@ return {
|
|||
event = "BufRead",
|
||||
config = function() require"lsp_signature".on_attach() end,
|
||||
},
|
||||
'stevearc/aerial.nvim',
|
||||
{'stevearc/aerial.nvim', config = true},
|
||||
{
|
||||
"hrsh7th/nvim-cmp",
|
||||
dependencies = {
|
||||
|
@ -120,7 +120,7 @@ return {
|
|||
}
|
||||
},
|
||||
"ThePrimeagen/vim-be-good",
|
||||
'kazhala/close-buffers.nvim',
|
||||
{'kazhala/close-buffers.nvim', config = true},
|
||||
-- {
|
||||
-- "VonHeikemen/fine-cmdline.nvim",
|
||||
-- dependencies = {{"MunifTanjim/nui.nvim"}},
|
||||
|
@ -141,7 +141,6 @@ return {
|
|||
}
|
||||
},
|
||||
"itchyny/screensaver.vim",
|
||||
"christoomey/vim-tmux-navigator",
|
||||
'anuvyklack/pretty-fold.nvim',
|
||||
'eandrju/cellular-automaton.nvim',
|
||||
"ahmedkhalf/project.nvim",
|
||||
|
@ -150,7 +149,7 @@ return {
|
|||
"andweeb/presence.nvim",
|
||||
"nacro90/numb.nvim",
|
||||
{"ellisonleao/glow.nvim", config = true, cmd = "Glow"},
|
||||
"kylechui/nvim-surround",
|
||||
{"kylechui/nvim-surround", opts={}},
|
||||
{
|
||||
"phaazon/hop.nvim",
|
||||
event = "BufRead",
|
||||
|
@ -198,8 +197,7 @@ return {
|
|||
"lambdalisue/suda.vim",
|
||||
"tpope/vim-sleuth",
|
||||
"mbbill/undotree",
|
||||
"windwp/nvim-autopairs",
|
||||
"windwp/nvim-ts-autotag",
|
||||
{"windwp/nvim-autopairs", opts = {}},
|
||||
{
|
||||
"mg979/vim-visual-multi",
|
||||
config = function ()
|
||||
|
@ -213,7 +211,9 @@ return {
|
|||
},
|
||||
{
|
||||
"windwp/nvim-ts-autotag",
|
||||
config = true,
|
||||
opts = {
|
||||
filetypes = {'html', 'javascript', 'typescript', 'javascriptreact', 'typescriptreact', 'svelte', 'vue', 'tsx', 'jsx', 'rescript', 'xml', 'php', 'markdown', 'astro', 'glimmer', 'handlebars', 'hbs', "rust" },
|
||||
},
|
||||
},
|
||||
{
|
||||
'bennypowers/nvim-regexplainer',
|
||||
|
@ -325,7 +325,7 @@ return {
|
|||
"folke/todo-comments.nvim",
|
||||
event = "BufRead",
|
||||
},
|
||||
'numToStr/Comment.nvim',
|
||||
{'numToStr/Comment.nvim', opts = {}},
|
||||
{
|
||||
"SmiteshP/nvim-navbuddy",
|
||||
dependencies = {
|
||||
|
@ -353,6 +353,16 @@ return {
|
|||
end,
|
||||
},
|
||||
|
||||
-- language mixing also OTTER
|
||||
{
|
||||
"jmbuhr/otter.nvim",
|
||||
dependencies = {
|
||||
'hrsh7th/nvim-cmp',
|
||||
'neovim/nvim-lspconfig',
|
||||
'nvim-treesitter/nvim-treesitter'
|
||||
},
|
||||
},
|
||||
|
||||
-- lenguage specific
|
||||
-- nim
|
||||
"alaviss/nim.nvim",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue