deleted some themes

This commit is contained in:
Tawfeeq 2025-02-05 23:58:33 +01:00
parent 8d05a545d1
commit ed9ef123c1
21 changed files with 53 additions and 74 deletions

View file

@ -0,0 +1,27 @@
return {
'okuuva/auto-save.nvim',
version = '^1.0.0', -- see https://devhints.io/semver, alternatively use '*' to use the latest tagged release
cmd = 'ASToggle', -- optional for lazy loading on command
event = { 'InsertLeave', 'TextChanged' }, -- optional for lazy loading on trigger events
opts = {
-- your config goes here
-- or just leave it empty :)
enabled = true, -- start auto-save when the plugin is loaded (i.e. when your package manager loads it)
trigger_events = { -- See :h events
immediate_save = { 'BufLeave', 'FocusLost', 'QuitPre', 'VimSuspend' }, -- vim events that trigger an immediate save
defer_save = { 'InsertLeave', 'TextChanged' }, -- vim events that trigger a deferred save (saves after `debounce_delay`)
cancel_deferred_save = { 'InsertEnter' }, -- vim events that cancel a pending deferred save
},
-- function that takes the buffer handle and determines whether to save the current buffer or not
-- return true: if buffer is ok to be saved
-- return false: if it's not ok to be saved
-- if set to `nil` then no specific condition is applied
condition = nil,
write_all_buffers = false, -- write all buffers when the current one meets `condition`
noautocmd = false, -- do not execute autocmds when saving
lockmarks = false, -- lock marks when saving, see `:h lockmarks` for more details
debounce_delay = 1000, -- delay after which a pending save is executed
-- log debug messages to 'auto-save.log' file in neovim cache directory, set to `true` to enable
debug = false,
},
}

View file

@ -1,9 +0,0 @@
return {
'ayu-theme/ayu-vim', -- or other package manager
config = function()
vim.o.termguicolors = true -- enable true colors support
local ayucolor = 'light' -- for light version of theme
-- local ayucolor = 'mirage' -- for mirage version of theme
-- local ayucolor = 'dark' -- for dark version of theme
end,
}

View file

@ -1,10 +0,0 @@
return -- Using lazy.nvim
{
'ribru17/bamboo.nvim',
lazy = false,
config = function()
require('bamboo').setup {
-- optional configuration here
}
end,
}

View file

@ -1 +0,0 @@
return { 'sixfourtwelve/bore.vim' }

View file

@ -1 +0,0 @@
return { 'catppuccin/nvim', name = 'catppuccin', priority = 1000 }

View file

@ -1,8 +0,0 @@
return {
'scottmckendry/cyberdream.nvim',
lazy = false,
priority = 1000,
options = {
theme = 'auto', -- "auto" will set the theme dynamically based on the colorscheme
},
}

View file

@ -1 +0,0 @@
return { 'water-sucks/darkrose.nvim' }

View file

@ -1 +0,0 @@
return { 'whatyouhide/vim-gotham' }

View file

@ -1 +0,0 @@
return {'Love-Pengy/lillilac.nvim'}

View file

@ -1 +0,0 @@
return { 'mellow-theme/mellow.nvim' }

View file

@ -1,8 +0,0 @@
return {
'xero/miasma.nvim',
-- lazy = false,
-- priority = 1000,
-- config = function()
-- vim.cmd 'colorscheme miasma'
-- end,
}

View file

@ -1,2 +0,0 @@
-- theme
return { 'franbach/miramare' }

View file

@ -1 +0,0 @@
return { 'EdenEast/nightfox.nvim' }

View file

@ -1 +0,0 @@
return { 'nvimdev/oceanic-material' }

View file

@ -1 +0,0 @@
return { 'austinliuigi/smoke.nvim' }

View file

@ -1,10 +0,0 @@
return {
'deparr/tairiki.nvim',
lazy = false,
priority = 1000, -- only necessary if you use tairiki as default theme
config = function()
require('tairiki').setup {
style = 'dark',
}
end,
}

View file

@ -1,5 +0,0 @@
return {
'pmizio/typescript-tools.nvim',
dependencies = { 'nvim-lua/plenary.nvim', 'neovim/nvim-lspconfig' },
opts = {},
}

View file

@ -1 +0,0 @@
return { 'adigitoleo/vim-mellow' }

View file

@ -0,0 +1 @@
return { 'mg979/vim-visual-multi', branch = 'master' }