pre zsh-switch backup
This commit is contained in:
46
.config/nvim/lua/plugins/emacs.lua
Normal file
46
.config/nvim/lua/plugins/emacs.lua
Normal file
@@ -0,0 +1,46 @@
|
||||
return {
|
||||
{
|
||||
'ej-shafran/compile-mode.nvim',
|
||||
dependencies = {
|
||||
'nvim-lua/plenary.nvim',
|
||||
'm00qek/baleia.nvim',
|
||||
},
|
||||
config = function()
|
||||
vim.api.nvim_set_hl(0, 'CompileModeInfo', { link = 'DiagnosticInfo' })
|
||||
vim.api.nvim_set_hl(0, 'CompileModeWarning', { link = 'DiagnosticWarning' })
|
||||
vim.api.nvim_set_hl(0, 'CompileModeError', { link = 'DiagnosticError' })
|
||||
|
||||
vim.api.nvim_set_hl(0, 'CompileModeCommandOutput', { link = 'Statement' })
|
||||
vim.api.nvim_set_hl(0, 'CompileModeMessage', { link = 'SpellCap' })
|
||||
vim.api.nvim_set_hl(0, 'CompileModeMessageRow', { link = 'CursorLineNr' })
|
||||
vim.api.nvim_set_hl(0, 'CompileModeMessageCol', { link = 'CursorLineNr' })
|
||||
|
||||
vim.g.compile_mode = {
|
||||
baleia_setup = true,
|
||||
}
|
||||
end,
|
||||
},
|
||||
-- {
|
||||
-- dir = '~/dev/s-ido',
|
||||
-- name = 's-ido',
|
||||
-- lazy = false,
|
||||
-- dev = true,
|
||||
-- opts = {},
|
||||
-- keys = {
|
||||
-- {
|
||||
-- '<Tab>',
|
||||
-- function()
|
||||
-- require('s-ido.commandline').complete()
|
||||
-- end,
|
||||
-- mode = 'c',
|
||||
-- },
|
||||
-- },
|
||||
-- },
|
||||
-- {
|
||||
-- dir = '~/dev/s-nav',
|
||||
-- name = 's-nav',
|
||||
-- lazy = false,
|
||||
-- dev = true,
|
||||
-- opts = {},
|
||||
-- },
|
||||
}
|
||||
Reference in New Issue
Block a user