initial
This commit is contained in:
52
nvim/lua/plugins/code-runner.lua
Normal file
52
nvim/lua/plugins/code-runner.lua
Normal file
@@ -0,0 +1,52 @@
|
||||
return {
|
||||
"hkupty/iron.nvim",
|
||||
config = function(plugins, opts)
|
||||
local iron = require("iron.core")
|
||||
|
||||
iron.setup({
|
||||
config = {
|
||||
-- Whether a repl should be discarded or not
|
||||
scratch_repl = true,
|
||||
-- Your repl definitions come here
|
||||
repl_definition = {
|
||||
python = {
|
||||
-- Can be a table or a function that
|
||||
-- returns a table (see below)
|
||||
command = { "python" },
|
||||
},
|
||||
},
|
||||
-- How the repl window will be displayed
|
||||
-- See below for more information
|
||||
repl_open_cmd = require("iron.view").right(60),
|
||||
},
|
||||
-- Iron doesn't set keymaps by default anymore.
|
||||
-- You can set them here or manually add keymaps to the functions in iron.core
|
||||
keymaps = {
|
||||
send_motion = "<space>rc",
|
||||
visual_send = "<space>rc",
|
||||
send_file = "<space>rf",
|
||||
send_line = "<space>rl",
|
||||
send_mark = "<space>rm",
|
||||
mark_motion = "<space>rmc",
|
||||
mark_visual = "<space>rmc",
|
||||
remove_mark = "<space>rmd",
|
||||
cr = "<space>r<cr>",
|
||||
interrupt = "<space>r<space>",
|
||||
exit = "<space>rq",
|
||||
clear = "<space>rx",
|
||||
},
|
||||
-- If the highlight is on, you can change how it looks
|
||||
-- For the available options, check nvim_set_hl
|
||||
highlight = {
|
||||
italic = true,
|
||||
},
|
||||
ignore_blank_lines = true, -- ignore blank lines when sending visual select lines
|
||||
})
|
||||
|
||||
-- iron also has a list of commands, see :h iron-commands for all available commands
|
||||
vim.keymap.set("n", "<space>rs", "<cmd>IronRepl<cr>")
|
||||
vim.keymap.set("n", "<space>rr", "<cmd>IronRestart<cr>")
|
||||
vim.keymap.set("n", "<space>rF", "<cmd>IronFocus<cr>")
|
||||
vim.keymap.set("n", "<space>rh", "<cmd>IronHide<cr>")
|
||||
end,
|
||||
}
|
||||
197
nvim/lua/plugins/example.lua
Normal file
197
nvim/lua/plugins/example.lua
Normal file
@@ -0,0 +1,197 @@
|
||||
-- since this is just an example spec, don't actually load anything here and return an empty spec
|
||||
-- stylua: ignore
|
||||
if true then return {} end
|
||||
|
||||
-- every spec file under the "plugins" directory will be loaded automatically by lazy.nvim
|
||||
--
|
||||
-- In your plugin files, you can:
|
||||
-- * add extra plugins
|
||||
-- * disable/enabled LazyVim plugins
|
||||
-- * override the configuration of LazyVim plugins
|
||||
return {
|
||||
-- add gruvbox
|
||||
{ "ellisonleao/gruvbox.nvim" },
|
||||
|
||||
-- Configure LazyVim to load gruvbox
|
||||
{
|
||||
"LazyVim/LazyVim",
|
||||
opts = {
|
||||
colorscheme = "gruvbox",
|
||||
},
|
||||
},
|
||||
|
||||
-- change trouble config
|
||||
{
|
||||
"folke/trouble.nvim",
|
||||
-- opts will be merged with the parent spec
|
||||
opts = { use_diagnostic_signs = true },
|
||||
},
|
||||
|
||||
-- disable trouble
|
||||
{ "folke/trouble.nvim", enabled = false },
|
||||
|
||||
-- override nvim-cmp and add cmp-emoji
|
||||
-- {
|
||||
-- "hrsh7th/nvim-cmp",
|
||||
-- dependencies = { "hrsh7th/cmp-emoji" },
|
||||
-----@param opts cmp.ConfigSchema
|
||||
--opts = function(_, opts)
|
||||
-- table.insert(opts.sources, { name = "emoji" })
|
||||
--end,
|
||||
--},
|
||||
|
||||
-- change some telescope options and a keymap to browse plugin files
|
||||
{
|
||||
"nvim-telescope/telescope.nvim",
|
||||
keys = {
|
||||
-- add a keymap to browse plugin files
|
||||
-- stylua: ignore
|
||||
{
|
||||
"<leader>fp",
|
||||
function() require("telescope.builtin").find_files({ cwd = require("lazy.core.config").options.root }) end,
|
||||
desc = "Find Plugin File",
|
||||
},
|
||||
},
|
||||
-- change some options
|
||||
opts = {
|
||||
defaults = {
|
||||
layout_strategy = "horizontal",
|
||||
layout_config = { prompt_position = "top" },
|
||||
sorting_strategy = "ascending",
|
||||
winblend = 0,
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
-- add pyright to lspconfig
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
---@class PluginLspOpts
|
||||
opts = {
|
||||
---@type lspconfig.options
|
||||
servers = {
|
||||
-- pyright will be automatically installed with mason and loaded with lspconfig
|
||||
pyright = {},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
-- add tsserver and setup with typescript.nvim instead of lspconfig
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
dependencies = {
|
||||
"jose-elias-alvarez/typescript.nvim",
|
||||
init = function()
|
||||
require("lazyvim.util").lsp.on_attach(function(_, buffer)
|
||||
-- stylua: ignore
|
||||
vim.keymap.set( "n", "<leader>co", "TypescriptOrganizeImports", { buffer = buffer, desc = "Organize Imports" })
|
||||
vim.keymap.set("n", "<leader>cR", "TypescriptRenameFile", { desc = "Rename File", buffer = buffer })
|
||||
end)
|
||||
end,
|
||||
},
|
||||
---@class PluginLspOpts
|
||||
opts = {
|
||||
---@type lspconfig.options
|
||||
servers = {
|
||||
-- tsserver will be automatically installed with mason and loaded with lspconfig
|
||||
tsserver = {},
|
||||
},
|
||||
-- you can do any additional lsp server setup here
|
||||
-- return true if you don't want this server to be setup with lspconfig
|
||||
---@type table<string, fun(server:string, opts:_.lspconfig.options):boolean?>
|
||||
setup = {
|
||||
-- example to setup with typescript.nvim
|
||||
tsserver = function(_, opts)
|
||||
require("typescript").setup({ server = opts })
|
||||
return true
|
||||
end,
|
||||
-- Specify * to use this function as a fallback for any server
|
||||
-- ["*"] = function(server, opts) end,
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
-- for typescript, LazyVim also includes extra specs to properly setup lspconfig,
|
||||
-- treesitter, mason and typescript.nvim. So instead of the above, you can use:
|
||||
{ import = "lazyvim.plugins.extras.lang.typescript" },
|
||||
|
||||
-- add more treesitter parsers
|
||||
{
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
opts = {
|
||||
ensure_installed = {
|
||||
"bash",
|
||||
"html",
|
||||
"javascript",
|
||||
"json",
|
||||
"lua",
|
||||
"markdown",
|
||||
"markdown_inline",
|
||||
"python",
|
||||
"query",
|
||||
"regex",
|
||||
"tsx",
|
||||
"typescript",
|
||||
"vim",
|
||||
"yaml",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
-- since `vim.tbl_deep_extend`, can only merge tables and not lists, the code above
|
||||
-- would overwrite `ensure_installed` with the new value.
|
||||
-- If you'd rather extend the default config, use the code below instead:
|
||||
{
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
opts = function(_, opts)
|
||||
-- add tsx and treesitter
|
||||
vim.list_extend(opts.ensure_installed, {
|
||||
"tsx",
|
||||
"typescript",
|
||||
})
|
||||
end,
|
||||
},
|
||||
|
||||
-- the opts function can also be used to change the default opts:
|
||||
{
|
||||
"nvim-lualine/lualine.nvim",
|
||||
event = "VeryLazy",
|
||||
opts = function(_, opts)
|
||||
table.insert(opts.sections.lualine_x, {
|
||||
function()
|
||||
return "😄"
|
||||
end,
|
||||
})
|
||||
end,
|
||||
},
|
||||
|
||||
-- or you can return new options to override all the defaults
|
||||
{
|
||||
"nvim-lualine/lualine.nvim",
|
||||
event = "VeryLazy",
|
||||
opts = function()
|
||||
return {
|
||||
--[[add your custom lualine config here]]
|
||||
}
|
||||
end,
|
||||
},
|
||||
|
||||
-- use mini.starter instead of alpha
|
||||
{ import = "lazyvim.plugins.extras.ui.mini-starter" },
|
||||
|
||||
-- add jsonls and schemastore packages, and setup treesitter for json, json5 and jsonc
|
||||
{ import = "lazyvim.plugins.extras.lang.json" },
|
||||
|
||||
-- add any tools you want to have installed below
|
||||
{
|
||||
"williamboman/mason.nvim",
|
||||
opts = {
|
||||
ensure_installed = {
|
||||
"stylua",
|
||||
"shellcheck",
|
||||
"shfmt",
|
||||
"flake8",
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
99
nvim/lua/plugins/nvim_lilypond.lua
Normal file
99
nvim/lua/plugins/nvim_lilypond.lua
Normal file
@@ -0,0 +1,99 @@
|
||||
return {
|
||||
'martineausimon/nvim-lilypond-suite',
|
||||
config = function()
|
||||
|
||||
require('nvls').setup({
|
||||
lilypond = {
|
||||
mappings = {
|
||||
plaryer = "<F3>",
|
||||
compile = "<F5>",
|
||||
open_pdf = "<F6>",
|
||||
switch_buffers = "<A-Space>",
|
||||
insert_version = "<F4>",
|
||||
hyphenation = "<F12>",
|
||||
hyphenation_change_lang = "<F11>",
|
||||
insert_hyphen = "<leader>ih",
|
||||
add_hyphen = "<leader>ah",
|
||||
del_next_hyphen = "<leader>dh",
|
||||
del_prev_hyphen = "<leader>dH",
|
||||
},
|
||||
options = {
|
||||
pitches_language = "default",
|
||||
hyphenation_language = "en_DEFAULT",
|
||||
output = "pdf",
|
||||
backend = nil,
|
||||
main_file = "main.ly",
|
||||
main_folder = "%:p:h",
|
||||
include_dir = nil,
|
||||
diagnostics = true,
|
||||
pdf_viewer = 'zathura',
|
||||
},
|
||||
},
|
||||
latex = {
|
||||
mappings = {
|
||||
compile = "<F5>",
|
||||
open_pdf = "<F6>",
|
||||
lilypond_syntax = "<F3>"
|
||||
},
|
||||
options = {
|
||||
lilypond_book_flags = nil,
|
||||
clean_logs = false,
|
||||
main_file = "main.tex",
|
||||
main_folder = "%:p:h",
|
||||
include_dir = nil,
|
||||
lilypond_syntax_au = "BufEnter",
|
||||
pdf_viewer = 'zathura',
|
||||
},
|
||||
},
|
||||
texinfo = {
|
||||
mappings = {
|
||||
compile = "<F5>",
|
||||
open_pdf = "<F6>",
|
||||
lilypond_syntax = "<F3>"
|
||||
},
|
||||
options = {
|
||||
lilypond_book_flags = "--pdf",
|
||||
clean_logs = false,
|
||||
main_file = "main.texi",
|
||||
main_folder = "%:p:h",
|
||||
lilypond_syntax_au = "BufEnter",
|
||||
pdf_viewer = 'zathura',
|
||||
},
|
||||
},
|
||||
player = {
|
||||
mappings = {
|
||||
quit = "q",
|
||||
play_pause = "p",
|
||||
loop = "<A-l>",
|
||||
backward = "h",
|
||||
small_backward = "<S-h>",
|
||||
forward = "l",
|
||||
small_forward = "<S-l>",
|
||||
decrease_speed = "j",
|
||||
increase_speed = "k",
|
||||
halve_speed = "<S-j>",
|
||||
double_speed = "<S-k>"
|
||||
},
|
||||
options = {
|
||||
row = 1,
|
||||
col = "99%",
|
||||
width = "37",
|
||||
height = "1",
|
||||
border_style = "single",
|
||||
winhighlight = "Normal:Normal,FloatBorder:Normal",
|
||||
midi_synth = "fluidsynth",
|
||||
fluidsynth_flags = {
|
||||
'/usr/share/sounds/sf3/essential_keys_sforzando_v9.9.sf3'
|
||||
},
|
||||
timidity_flags = nil,
|
||||
audio_format = "mp3",
|
||||
mpv_flags = {
|
||||
"--msg-level=cplayer=no,ffmpeg=no,alsa=no",
|
||||
"--loop",
|
||||
"--config-dir=/dev/null"
|
||||
}
|
||||
},
|
||||
},
|
||||
})
|
||||
end
|
||||
}
|
||||
Reference in New Issue
Block a user