mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-17 16:21:12 +02:00
deleted some themes
This commit is contained in:
parent
8d05a545d1
commit
ed9ef123c1
21 changed files with 53 additions and 74 deletions
27
lua/custom/plugins/auto-save.lua
Normal file
27
lua/custom/plugins/auto-save.lua
Normal 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,
|
||||
},
|
||||
}
|
|
@ -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,
|
||||
}
|
|
@ -1,10 +0,0 @@
|
|||
return -- Using lazy.nvim
|
||||
{
|
||||
'ribru17/bamboo.nvim',
|
||||
lazy = false,
|
||||
config = function()
|
||||
require('bamboo').setup {
|
||||
-- optional configuration here
|
||||
}
|
||||
end,
|
||||
}
|
|
@ -1 +0,0 @@
|
|||
return { 'sixfourtwelve/bore.vim' }
|
|
@ -1 +0,0 @@
|
|||
return { 'catppuccin/nvim', name = 'catppuccin', priority = 1000 }
|
|
@ -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
|
||||
},
|
||||
}
|
|
@ -1 +0,0 @@
|
|||
return { 'water-sucks/darkrose.nvim' }
|
|
@ -1 +0,0 @@
|
|||
return { 'whatyouhide/vim-gotham' }
|
|
@ -1 +0,0 @@
|
|||
return {'Love-Pengy/lillilac.nvim'}
|
|
@ -1 +0,0 @@
|
|||
return { 'mellow-theme/mellow.nvim' }
|
|
@ -1,8 +0,0 @@
|
|||
return {
|
||||
'xero/miasma.nvim',
|
||||
-- lazy = false,
|
||||
-- priority = 1000,
|
||||
-- config = function()
|
||||
-- vim.cmd 'colorscheme miasma'
|
||||
-- end,
|
||||
}
|
|
@ -1,2 +0,0 @@
|
|||
-- theme
|
||||
return { 'franbach/miramare' }
|
|
@ -1 +0,0 @@
|
|||
return { 'EdenEast/nightfox.nvim' }
|
|
@ -1 +0,0 @@
|
|||
return { 'nvimdev/oceanic-material' }
|
|
@ -1 +0,0 @@
|
|||
return { 'austinliuigi/smoke.nvim' }
|
|
@ -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,
|
||||
}
|
|
@ -1,5 +0,0 @@
|
|||
return {
|
||||
'pmizio/typescript-tools.nvim',
|
||||
dependencies = { 'nvim-lua/plenary.nvim', 'neovim/nvim-lspconfig' },
|
||||
opts = {},
|
||||
}
|
|
@ -1 +0,0 @@
|
|||
return { 'adigitoleo/vim-mellow' }
|
1
lua/custom/plugins/vim-visual-multi.lua
Normal file
1
lua/custom/plugins/vim-visual-multi.lua
Normal file
|
@ -0,0 +1 @@
|
|||
return { 'mg979/vim-visual-multi', branch = 'master' }
|
|
@ -102,7 +102,7 @@ return {
|
|||
executable = {
|
||||
command = 'node',
|
||||
-- Update the path below to point to your `dapDebugServer.js`
|
||||
args = { '/home/tawfeeq/.config/nvim/.debuggers/vscode-js-debug/js-debug/src/dapDebugServer.js', '${port}' },
|
||||
args = { '/home/tawfeeq/.config/nvim/debuggers/vscode-js-debug/js-debug/src/dapDebugServer.js', '${port}' },
|
||||
},
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue