mirror of https://github.com/sgoudham/dotfiles.git
refactor(lvim): OOP'ify my config
parent
97f44a1340
commit
0142dc96c8
@ -1,310 +1 @@
|
||||
-- Vim Options
|
||||
vim.opt.timeoutlen = 500
|
||||
vim.opt.relativenumber = true
|
||||
vim.opt.laststatus = 3
|
||||
vim.opt.pumheight = 20
|
||||
vim.opt.clipboard = ""
|
||||
vim.opt.lazyredraw = true
|
||||
vim.opt.showtabline = 0
|
||||
vim.opt.completeopt = [[menuone,noinsert,noselect]]
|
||||
lvim.log.level = "warn"
|
||||
lvim.format_on_save = false
|
||||
lvim.colorscheme = "catppuccin"
|
||||
lvim.leader = "space"
|
||||
|
||||
-- unmapping defaults
|
||||
lvim.keys.normal_mode["<C-j>"] = false
|
||||
lvim.keys.normal_mode["<C-l>"] = false
|
||||
lvim.keys.normal_mode["<C-k>"] = false
|
||||
lvim.keys.insert_mode["<M-j>"] = false
|
||||
lvim.keys.insert_mode["<M-k>"] = false
|
||||
|
||||
-- navigation
|
||||
lvim.keys.normal_mode["<M-j>"] = "<C-w>j"
|
||||
lvim.keys.normal_mode["<M-k>"] = "<C-w>k"
|
||||
lvim.keys.normal_mode["<M-l>"] = "<C-w>l"
|
||||
lvim.keys.normal_mode["<M-h>"] = "<C-w>h"
|
||||
|
||||
-- cmp
|
||||
local cmp = require("cmp")
|
||||
local mappings = {
|
||||
['<A-k>'] = cmp.mapping(cmp.mapping.select_prev_item(), { 'i', 'c' }),
|
||||
['<A-j>'] = cmp.mapping(cmp.mapping.select_next_item(), { 'i', 'c' }),
|
||||
['<A-p>'] = cmp.mapping.scroll_docs(-4),
|
||||
['<A-n>'] = cmp.mapping.scroll_docs(4),
|
||||
}
|
||||
lvim.builtin.cmp.cmdline.enable = true
|
||||
lvim.builtin.cmp.mapping = vim.tbl_deep_extend("keep", mappings,
|
||||
lvim.builtin.cmp.mapping)
|
||||
|
||||
-- lsp
|
||||
local lsp_diagnostics = {
|
||||
update_in_insert = true,
|
||||
float = { border = "rounded" },
|
||||
}
|
||||
local buffer_mappings = {
|
||||
normal_mode = {
|
||||
["ge"] = {
|
||||
function() require("telescope.builtin").diagnostics() end,
|
||||
"Display Workplace Diagnostics",
|
||||
},
|
||||
["gr"] = {
|
||||
function() require("telescope.builtin").lsp_references() end,
|
||||
"Goto References",
|
||||
},
|
||||
["gd"] = {
|
||||
function() require("telescope.builtin").lsp_definitions() end,
|
||||
"Goto Definitions",
|
||||
},
|
||||
["gI"] = {
|
||||
function() require("telescope.builtin").lsp_implementations() end,
|
||||
"Goto Implementations",
|
||||
},
|
||||
},
|
||||
}
|
||||
lvim.lsp.diagnostics = vim.tbl_deep_extend("keep", lsp_diagnostics,
|
||||
lvim.lsp.diagnostics)
|
||||
lvim.lsp.buffer_mappings = vim.tbl_deep_extend("keep", buffer_mappings,
|
||||
lvim.lsp.buffer_mappings)
|
||||
|
||||
-- useful
|
||||
lvim.keys.normal_mode["<C-u>"] = "<C-u>zz"
|
||||
lvim.keys.normal_mode["<C-d>"] = "<C-d>zz"
|
||||
lvim.keys.normal_mode["<CR>"] = "o<ESC>"
|
||||
lvim.keys.normal_mode["0"] = "^"
|
||||
lvim.keys.normal_mode["[d"] = ":lua vim.diagnostic.goto_prev()<CR>"
|
||||
lvim.keys.normal_mode["]d"] = ":lua vim.diagnostic.goto_next()<CR>"
|
||||
lvim.keys.normal_mode["[c"] = ":lua require('gitsigns').prev_hunk()<CR>"
|
||||
lvim.keys.normal_mode["]c"] = ":lua require('gitsigns').next_hunk()<CR>"
|
||||
|
||||
-- which-key
|
||||
lvim.builtin.which_key.mappings["s"] = nil
|
||||
lvim.builtin.which_key.mappings["f"] = {
|
||||
name = "Find",
|
||||
b = { "<cmd>Telescope buffers<cr>", "Open Buffers" },
|
||||
f = { "<cmd>Telescope find_files<cr>", "Find File" },
|
||||
h = { "<cmd>Telescope help_tags<cr>", "Find Help" },
|
||||
H = { "<cmd>Telescope highlights<cr>", "Find Highlights" },
|
||||
g = { "<cmd>Telescope live_grep<cr>", "Find Text" },
|
||||
R = { "<cmd>Telescope registers<cr>", "Find Registers" },
|
||||
k = { "<cmd>Telescope keymaps<cr>", "Find Keymaps" },
|
||||
c = {
|
||||
"<cmd>Telescope current_buffer_fuzzy_find<cr>",
|
||||
"Find Text In Current Buffer",
|
||||
},
|
||||
C = { "<cmd>Telescope commands<cr>", "Find Commands" },
|
||||
r = { "<cmd>Telescope oldfiles<cr>", "Open Recent File" },
|
||||
p = { "<cmd>Telescope projects<cr>", "Open Projects" },
|
||||
d = { "<cmd>Easypick chezmoi<cr>", "Open Dotfiles" },
|
||||
}
|
||||
|
||||
local _, actions = pcall(require, "telescope.actions")
|
||||
lvim.builtin.telescope.defaults.prompt_prefix = "🔍 "
|
||||
lvim.builtin.telescope.defaults.selection_caret = "> "
|
||||
lvim.builtin.telescope.defaults.file_ignore_patterns = { ".git/" }
|
||||
lvim.builtin.telescope.defaults.mappings = {
|
||||
i = {
|
||||
["<A-j>"] = actions.move_selection_next,
|
||||
["<A-k>"] = actions.move_selection_previous,
|
||||
["<A-n>"] = actions.cycle_history_next,
|
||||
["<A-p>"] = actions.cycle_history_prev,
|
||||
},
|
||||
n = {
|
||||
["<A-j>"] = actions.move_selection_next,
|
||||
["<A-k>"] = actions.move_selection_previous,
|
||||
["<A-n>"] = actions.preview_scrolling_down,
|
||||
["<A-p>"] = actions.preview_scrolling_up,
|
||||
},
|
||||
}
|
||||
|
||||
lvim.builtin.project.active = true
|
||||
lvim.builtin.alpha.active = true
|
||||
lvim.builtin.alpha.mode = "dashboard"
|
||||
lvim.builtin.bufferline.active = false
|
||||
lvim.builtin.breadcrumbs.active = true
|
||||
lvim.builtin.terminal.active = false
|
||||
lvim.builtin.indentlines.active = false
|
||||
lvim.builtin.illuminate.active = false
|
||||
lvim.builtin.treesitter.rainbow.enable = true
|
||||
lvim.builtin.treesitter.highlight.enable = true
|
||||
lvim.builtin.nvimtree.setup.view.side = "left"
|
||||
lvim.builtin.nvimtree.setup.renderer.icons.show.git = true
|
||||
|
||||
lvim.builtin.alpha.dashboard.section.header.val = {
|
||||
[[ __ ]],
|
||||
[[ ___ ___ ___ __ __ /\_\ ___ ___ ]],
|
||||
[[ / _ `\ / __`\ / __`\/\ \/\ \\/\ \ / __` __`\ ]],
|
||||
[[/\ \/\ \/\ __//\ \_\ \ \ \_/ |\ \ \/\ \/\ \/\ \ ]],
|
||||
[[\ \_\ \_\ \____\ \____/\ \___/ \ \_\ \_\ \_\ \_\]],
|
||||
[[ \/_/\/_/\/____/\/___/ \/__/ \/_/\/_/\/_/\/_/]],
|
||||
}
|
||||
|
||||
-- if you don't want all the parsers change this to a table of the ones you want
|
||||
lvim.builtin.treesitter.ensure_installed = {
|
||||
"bash",
|
||||
"c",
|
||||
"javascript",
|
||||
"json",
|
||||
"lua",
|
||||
"python",
|
||||
"typescript",
|
||||
"tsx",
|
||||
"css",
|
||||
"rust",
|
||||
"java",
|
||||
"haskell",
|
||||
"markdown",
|
||||
"markdown_inline",
|
||||
"html",
|
||||
"go",
|
||||
"erlang",
|
||||
"toml",
|
||||
}
|
||||
|
||||
---configure a server manually. !!Requires `:LvimCacheReset` to take effect!!
|
||||
vim.list_extend(lvim.lsp.automatic_configuration.skipped_servers, { "hls" })
|
||||
local opts = { cmd = { "haskell-language-server-9.2.4", "--lsp" } } -- check the lspconfig documentation for a list of all possible options
|
||||
require("lvim.lsp.manager").setup("hls", opts)
|
||||
require("lspconfig.ui.windows").default_options.border = "rounded"
|
||||
|
||||
-- ---remove a server from the skipped list, e.g. eslint, or emmet_ls. !!Requires `:LvimCacheReset` to take effect!!
|
||||
---see the full default list `:lua print(vim.inspect(lvim.lsp.automatic_configuration.skipped_servers))`
|
||||
-- ---`:LvimInfo` lists which server(s) are skipped for the current filetype
|
||||
-- lvim.lsp.automatic_configuration.skipped_servers = vim.tbl_filter(function(server)
|
||||
-- return server ~= "hls"
|
||||
-- end, lvim.lsp.automatic_configuration.skipped_servers)
|
||||
|
||||
-- -- you can set a custom on_attach function that will be used for all the language servers
|
||||
-- -- See <https://github.com/neovim/nvim-lspconfig#keybindings-and-completion>
|
||||
-- lvim.lsp.on_attach_callback = function(client, bufnr)
|
||||
-- local function buf_set_option(...)
|
||||
-- vim.api.nvim_buf_set_option(bufnr, ...)
|
||||
-- end
|
||||
-- --Enable completion triggered by <c-x><c-o>
|
||||
-- buf_set_option("omnifunc", "v:lua.vim.lsp.omnifunc")
|
||||
-- end
|
||||
|
||||
local formatters = require "lvim.lsp.null-ls.formatters"
|
||||
formatters.setup {
|
||||
{
|
||||
command = "lua-format",
|
||||
filetypes = { "lua" },
|
||||
extra_args = {
|
||||
"--spaces-inside-table-braces",
|
||||
"--indent-width=2",
|
||||
"--tab-width=2",
|
||||
"--continuation-indent-width=2",
|
||||
"--chop-down-table",
|
||||
"--extra-sep-at-table-end",
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
-- -- set additional linters
|
||||
-- local linters = require "lvim.lsp.null-ls.linters"
|
||||
-- linters.setup {
|
||||
-- { command = "flake8", filetypes = { "python" } },
|
||||
-- {
|
||||
-- -- each linter accepts a list of options identical to https://github.com/jose-elias-alvarez/null-ls.nvim/blob/main/doc/BUILTINS.md#Configuration
|
||||
-- command = "shellcheck",
|
||||
-- ---@usage arguments to pass to the formatter
|
||||
-- -- these cannot contain whitespaces, options such as `--line-width 80` become either `{'--line-width', '80'}` or `{'--line-width=80'}`
|
||||
-- extra_args = { "--severity", "warning" },
|
||||
-- },
|
||||
-- {
|
||||
-- command = "codespell",
|
||||
-- ---@usage specify which filetypes to enable. By default a providers will attach to all the filetypes it supports.
|
||||
-- filetypes = { "javascript", "python" },
|
||||
-- },
|
||||
-- }
|
||||
|
||||
-- Additional Plugins
|
||||
lvim.plugins = {
|
||||
{ "andweeb/presence.nvim" },
|
||||
{ "hrsh7th/cmp-cmdline" },
|
||||
{ "gpanders/editorconfig.nvim" },
|
||||
{ "p00f/nvim-ts-rainbow" },
|
||||
{ "nvim-treesitter/playground" },
|
||||
{
|
||||
"axkirillov/easypick.nvim",
|
||||
config = function()
|
||||
local easypick = require("easypick")
|
||||
easypick.setup {
|
||||
pickers = {
|
||||
{
|
||||
name = "chezmoi",
|
||||
command = [[chezmoi managed -x encrypted -i files | awk '{ printf("%s/%s\n", "~", $0) }']],
|
||||
opts = require('telescope.themes').get_dropdown({}),
|
||||
},
|
||||
},
|
||||
}
|
||||
end,
|
||||
},
|
||||
{
|
||||
'stevearc/dressing.nvim',
|
||||
config = function()
|
||||
require("dressing").setup { input = { insert_only = false } }
|
||||
end,
|
||||
},
|
||||
{
|
||||
"kylechui/nvim-surround",
|
||||
tag = "*", -- Use for stability; omit to use `main` branch for the latest features
|
||||
config = function() require("nvim-surround").setup() end,
|
||||
},
|
||||
{
|
||||
"catppuccin/nvim",
|
||||
as = "catppuccin",
|
||||
config = function()
|
||||
local cp = require("catppuccin.palettes").get_palette()
|
||||
|
||||
require("catppuccin").setup({
|
||||
flavour = "mocha",
|
||||
compile_path = vim.fn.stdpath("cache") .. "/catppuccin",
|
||||
transparent_background = true,
|
||||
term_colors = true,
|
||||
no_italic = true,
|
||||
integrations = {
|
||||
ts_rainbow = true,
|
||||
which_key = true,
|
||||
dap = { enabled = true, enable_ui = true },
|
||||
navic = { enabled = true, custom_bg = "NONE" },
|
||||
},
|
||||
color_overrides = {
|
||||
mocha = {
|
||||
base = "#000000",
|
||||
mantle = "#000000",
|
||||
surface2 = cp.subtext0,
|
||||
overlay0 = cp.subtext0,
|
||||
},
|
||||
},
|
||||
custom_highlights = {
|
||||
ErrorMsg = { fg = cp.red, style = { "bold" } },
|
||||
LspInfoBorder = { link = "FloatBorder" },
|
||||
PmenuSel = { bg = cp.surface0 },
|
||||
FloatBorder = { fg = cp.overlay0, bg = "NONE" },
|
||||
TelescopeBorder = { link = "FloatBorder" },
|
||||
TelescopeMatching = { link = "TelescopeNormal" },
|
||||
TelescopeSelection = { fg = "NONE", bg = cp.surface0 },
|
||||
TelescopeTitle = { fg = cp.subtext0 },
|
||||
},
|
||||
})
|
||||
|
||||
vim.api.nvim_command "colorscheme catppuccin"
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
||||
-- SOME PROPER CUSTOM CONFIGURATION --
|
||||
|
||||
vim.api.nvim_create_autocmd("BufWritePost", {
|
||||
group = vim.api.nvim_create_augroup("editorconfig", { clear = true }),
|
||||
pattern = "*.editorconfig",
|
||||
desc = "Refresh open buffers configuration on .editorconfig save",
|
||||
callback = function()
|
||||
for _, buf in pairs(vim.api.nvim_list_bufs()) do
|
||||
if vim.api.nvim_buf_is_valid(buf) then
|
||||
require("editorconfig").config(buf)
|
||||
end
|
||||
end
|
||||
end,
|
||||
})
|
||||
require("hammy")
|
||||
|
@ -0,0 +1,8 @@
|
||||
local formatters = require("lvim.lsp.null-ls.formatters")
|
||||
|
||||
formatters.setup({
|
||||
{
|
||||
command = "stylua",
|
||||
filetypes = { "lua" },
|
||||
},
|
||||
})
|
@ -0,0 +1,21 @@
|
||||
require("hammy.set")
|
||||
require("hammy.remap")
|
||||
require("hammy.formatter")
|
||||
-- require("hammy.linter")
|
||||
require("hammy.packer")
|
||||
require("hammy.lsp")
|
||||
require("hammy.plugin")
|
||||
|
||||
-- Some "Proper" Custom Configuration --
|
||||
vim.api.nvim_create_autocmd("BufWritePost", {
|
||||
group = vim.api.nvim_create_augroup("editorconfig", { clear = true }),
|
||||
pattern = "*.editorconfig",
|
||||
desc = "Refresh open buffers configuration on .editorconfig save",
|
||||
callback = function()
|
||||
for _, buf in pairs(vim.api.nvim_list_bufs()) do
|
||||
if vim.api.nvim_buf_is_valid(buf) then
|
||||
require("editorconfig").config(buf)
|
||||
end
|
||||
end
|
||||
end,
|
||||
})
|
@ -0,0 +1,18 @@
|
||||
-- -- set additional linters
|
||||
-- local linters = require "lvim.lsp.null-ls.linters"
|
||||
-- linters.setup {
|
||||
-- { command = "flake8", filetypes = { "python" } },
|
||||
-- {
|
||||
-- -- each linter accepts a list of options identical to https://github.com/jose-elias-alvarez/null-ls.nvim/blob/main/doc/BUILTINS.md#Configuration
|
||||
-- command = "shellcheck",
|
||||
-- ---@usage arguments to pass to the formatter
|
||||
-- -- these cannot contain whitespaces, options such as `--line-width 80` become either `{'--line-width', '80'}` or `{'--line-width=80'}`
|
||||
-- extra_args = { "--severity", "warning" },
|
||||
-- },
|
||||
-- {
|
||||
-- command = "codespell",
|
||||
-- ---@usage specify which filetypes to enable. By default a providers will attach to all the filetypes it supports.
|
||||
-- filetypes = { "javascript", "python" },
|
||||
-- },
|
||||
-- }
|
||||
|
@ -0,0 +1,5 @@
|
||||
local opts = {
|
||||
cmd = { "haskell-language-server-9.2.4", "--lsp" },
|
||||
}
|
||||
|
||||
require("lvim.lsp.manager").setup("hls", opts)
|
@ -0,0 +1,60 @@
|
||||
require("hammy.lsp.haskell")
|
||||
require("hammy.lsp.rust")
|
||||
|
||||
require("lspconfig.ui.windows").default_options.border = "rounded"
|
||||
|
||||
local lsp_diagnostics = {
|
||||
update_in_insert = true,
|
||||
float = { border = "rounded" },
|
||||
}
|
||||
local buffer_mappings = {
|
||||
normal_mode = {
|
||||
["ge"] = {
|
||||
function()
|
||||
require("telescope.builtin").diagnostics()
|
||||
end,
|
||||
"Display Workplace Diagnostics",
|
||||
},
|
||||
["gr"] = {
|
||||
function()
|
||||
require("telescope.builtin").lsp_references()
|
||||
end,
|
||||
"Goto References",
|
||||
},
|
||||
["gd"] = {
|
||||
function()
|
||||
require("telescope.builtin").lsp_definitions()
|
||||
end,
|
||||
"Goto Definitions",
|
||||
},
|
||||
["gI"] = {
|
||||
function()
|
||||
require("telescope.builtin").lsp_implementations()
|
||||
end,
|
||||
"Goto Implementations",
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
lvim.lsp.diagnostics = vim.tbl_deep_extend("keep", lsp_diagnostics, lvim.lsp.diagnostics)
|
||||
lvim.lsp.buffer_mappings = vim.tbl_deep_extend("keep", buffer_mappings, lvim.lsp.buffer_mappings)
|
||||
|
||||
-- Requires `:LvimCacheReset` to take effect
|
||||
vim.list_extend(lvim.lsp.automatic_configuration.skipped_servers, { "hls", "rust_analyzer" })
|
||||
|
||||
-- ---remove a server from the skipped list, e.g. eslint, or emmet_ls. !!Requires `:LvimCacheReset` to take effect!!
|
||||
---see the full default list `:lua print(vim.inspect(lvim.lsp.automatic_configuration.skipped_servers))`
|
||||
-- ---`:LvimInfo` lists which server(s) are skipped for the current filetype
|
||||
-- lvim.lsp.automatic_configuration.skipped_servers = vim.tbl_filter(function(server)
|
||||
-- return server ~= "hls"
|
||||
-- end, lvim.lsp.automatic_configuration.skipped_servers)
|
||||
|
||||
-- -- you can set a custom on_attach function that will be used for all the language servers
|
||||
-- -- See <https://github.com/neovim/nvim-lspconfig#keybindings-and-completion>
|
||||
-- lvim.lsp.on_attach_callback = function(client, bufnr)
|
||||
-- local function buf_set_option(...)
|
||||
-- vim.api.nvim_buf_set_option(bufnr, ...)
|
||||
-- end
|
||||
-- --Enable completion triggered by <c-x><c-o>
|
||||
-- buf_set_option("omnifunc", "v:lua.vim.lsp.omnifunc")
|
||||
-- end
|
@ -0,0 +1,102 @@
|
||||
local mason_path = vim.fn.glob(vim.fn.stdpath("data") .. "/mason/")
|
||||
local codelldb_adapter = {
|
||||
type = "server",
|
||||
port = "${port}",
|
||||
executable = {
|
||||
command = mason_path .. "bin/codelldb",
|
||||
args = { "--port", "${port}" },
|
||||
},
|
||||
}
|
||||
|
||||
pcall(function()
|
||||
require("rust-tools").setup({
|
||||
tools = {
|
||||
reload_workspace_from_cargo_toml = true,
|
||||
runnables = {
|
||||
use_telescope = true,
|
||||
},
|
||||
inlay_hints = {
|
||||
auto = true,
|
||||
only_current_line = false,
|
||||
show_parameter_hints = false,
|
||||
parameter_hints_prefix = "<-",
|
||||
other_hints_prefix = "=> ",
|
||||
highlight = "Comment",
|
||||
},
|
||||
hover_actions = {
|
||||
border = "rounded",
|
||||
},
|
||||
on_initialized = function()
|
||||
vim.api.nvim_create_autocmd({ "BufWritePost", "BufEnter", "CursorHold", "InsertLeave" }, {
|
||||
pattern = { "*.rs" },
|
||||
callback = function()
|
||||
local _, _ = pcall(vim.lsp.codelens.refresh)
|
||||
end,
|
||||
})
|
||||
end,
|
||||
},
|
||||
dap = {
|
||||
adapter = codelldb_adapter,
|
||||
},
|
||||
server = {
|
||||
on_attach = function(client, bufnr)
|
||||
require("lvim.lsp").common_on_attach(client, bufnr)
|
||||
local rt = require("rust-tools")
|
||||
vim.keymap.set("n", "K", rt.hover_actions.hover_actions, { buffer = bufnr })
|
||||
end,
|
||||
|
||||
capabilities = require("lvim.lsp").common_capabilities(),
|
||||
settings = {
|
||||
["rust-analyzer"] = {
|
||||
lens = {
|
||||
enable = true,
|
||||
},
|
||||
checkOnSave = {
|
||||
enable = true,
|
||||
command = "clippy",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
end)
|
||||
|
||||
lvim.builtin.dap.on_config_done = function(dap)
|
||||
dap.adapters.codelldb = codelldb_adapter
|
||||
dap.configurations.rust = {
|
||||
{
|
||||
name = "Launch file",
|
||||
type = "codelldb",
|
||||
request = "launch",
|
||||
program = function()
|
||||
vim.fn.jobstart("cargo test --no-run")
|
||||
return vim.fn.input("Path to executable: ", vim.fn.getcwd() .. "/target/debug/", "file")
|
||||
end,
|
||||
cwd = "${workspaceFolder}",
|
||||
stopOnEntry = false,
|
||||
},
|
||||
}
|
||||
end
|
||||
|
||||
-- vim.api.nvim_set_keymap("n", "<m-d>", "<cmd>RustOpenExternalDocs<Cr>", { noremap = true, silent = true })
|
||||
|
||||
-- lvim.builtin.which_key.mappings["C"] = {
|
||||
-- name = "Rust",
|
||||
-- r = { "<cmd>RustRunnables<Cr>", "Runnables" },
|
||||
-- t = { "<cmd>lua _CARGO_TEST()<cr>", "Cargo Test" },
|
||||
-- m = { "<cmd>RustExpandMacro<Cr>", "Expand Macro" },
|
||||
-- c = { "<cmd>RustOpenCargo<Cr>", "Open Cargo" },
|
||||
-- p = { "<cmd>RustParentModule<Cr>", "Parent Module" },
|
||||
-- d = { "<cmd>RustDebuggables<Cr>", "Debuggables" },
|
||||
-- v = { "<cmd>RustViewCrateGraph<Cr>", "View Crate Graph" },
|
||||
-- R = {
|
||||
-- "<cmd>lua require('rust-tools/workspace_refresh')._reload_workspace_from_cargo_toml()<Cr>",
|
||||
-- "Reload Workspace",
|
||||
-- },
|
||||
-- o = { "<cmd>RustOpenExternalDocs<Cr>", "Open External Docs" },
|
||||
-- y = { "<cmd>lua require'crates'.open_repository()<cr>", "[crates] open repository" },
|
||||
-- P = { "<cmd>lua require'crates'.show_popup()<cr>", "[crates] show popup" },
|
||||
-- i = { "<cmd>lua require'crates'.show_crate_popup()<cr>", "[crates] show info" },
|
||||
-- f = { "<cmd>lua require'crates'.show_features_popup()<cr>", "[crates] show features" },
|
||||
-- D = { "<cmd>lua require'crates'.show_dependencies_popup()<cr>", "[crates] show dependencies" },
|
||||
-- }
|
@ -0,0 +1,93 @@
|
||||
lvim.plugins = {
|
||||
{ "andweeb/presence.nvim" },
|
||||
{ "hrsh7th/cmp-cmdline" },
|
||||
{ "gpanders/editorconfig.nvim" },
|
||||
{ "p00f/nvim-ts-rainbow" },
|
||||
{ "nvim-treesitter/playground" },
|
||||
{ "simrat39/rust-tools.nvim" },
|
||||
{
|
||||
"saecki/crates.nvim",
|
||||
tag = "v0.3.0",
|
||||
requires = { "nvim-lua/plenary.nvim" },
|
||||
config = function()
|
||||
require("crates").setup({
|
||||
null_ls = {
|
||||
enabled = true,
|
||||
name = "crates.nvim",
|
||||
},
|
||||
popup = {
|
||||
border = "rounded",
|
||||
},
|
||||
})
|
||||
end,
|
||||
},
|
||||
{
|
||||
"axkirillov/easypick.nvim",
|
||||
config = function()
|
||||
local easypick = require("easypick")
|
||||
easypick.setup({
|
||||
pickers = {
|
||||
{
|
||||
name = "chezmoi",
|
||||
command = [[chezmoi managed -x encrypted -i files | awk '{ printf("%s/%s\n", "~", $0) }']],
|
||||
opts = require("telescope.themes").get_dropdown({}),
|
||||
},
|
||||
},
|
||||
})
|
||||
end,
|
||||
},
|
||||
{
|
||||
"stevearc/dressing.nvim",
|
||||
config = function()
|
||||
require("dressing").setup({ input = { insert_only = false } })
|
||||
end,
|
||||
},
|
||||
{
|
||||
"kylechui/nvim-surround",
|
||||
tag = "*", -- Use for stability; omit to use `main` branch for the latest features
|
||||
config = function()
|
||||
require("nvim-surround").setup()
|
||||
end,
|
||||
},
|
||||
{
|
||||
"catppuccin/nvim",
|
||||
as = "catppuccin",
|
||||
config = function()
|
||||
local cp = require("catppuccin.palettes").get_palette()
|
||||
|
||||
require("catppuccin").setup({
|
||||
flavour = "mocha",
|
||||
compile_path = vim.fn.stdpath("cache") .. "/catppuccin",
|
||||
transparent_background = true,
|
||||
term_colors = true,
|
||||
no_italic = true,
|
||||
integrations = {
|
||||
ts_rainbow = true,
|
||||
which_key = true,
|
||||
dap = { enabled = true, enable_ui = true },
|
||||
navic = { enabled = true, custom_bg = "NONE" },
|
||||
},
|
||||
color_overrides = {
|
||||
mocha = {
|
||||
base = "#000000",
|
||||
mantle = "#000000",
|
||||
surface2 = cp.subtext0,
|
||||
overlay0 = cp.subtext0,
|
||||
},
|
||||
},
|
||||
custom_highlights = {
|
||||
ErrorMsg = { fg = cp.red, style = { "bold" } },
|
||||
LspInfoBorder = { link = "FloatBorder" },
|
||||
PmenuSel = { bg = cp.surface0 },
|
||||
FloatBorder = { fg = cp.overlay0, bg = "NONE" },
|
||||
TelescopeBorder = { link = "FloatBorder" },
|
||||
TelescopeMatching = { link = "TelescopeNormal" },
|
||||
TelescopeSelection = { fg = "NONE", bg = cp.surface0 },
|
||||
TelescopeTitle = { fg = cp.subtext0 },
|
||||
},
|
||||
})
|
||||
|
||||
vim.api.nvim_command("colorscheme catppuccin")
|
||||
end,
|
||||
},
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
local cmp = require("cmp")
|
||||
local mappings = {
|
||||
["<A-k>"] = cmp.mapping(cmp.mapping.select_prev_item(), { "i", "c" }),
|
||||
["<A-j>"] = cmp.mapping(cmp.mapping.select_next_item(), { "i", "c" }),
|
||||
["<A-p>"] = cmp.mapping.scroll_docs(-4),
|
||||
["<A-n>"] = cmp.mapping.scroll_docs(4),
|
||||
}
|
||||
|
||||
lvim.builtin.cmp.cmdline.enable = true
|
||||
lvim.builtin.cmp.mapping = vim.tbl_deep_extend("keep", mappings, lvim.builtin.cmp.mapping)
|
@ -0,0 +1,11 @@
|
||||
lvim.builtin.alpha.active = true
|
||||
lvim.builtin.alpha.mode = "dashboard"
|
||||
|
||||
lvim.builtin.alpha.dashboard.section.header.val = {
|
||||
[[ __ ]],
|
||||
[[ ___ ___ ___ __ __ /\_\ ___ ___ ]],
|
||||
[[ / _ `\ / __`\ / __`\/\ \/\ \\/\ \ / __` __`\ ]],
|
||||
[[/\ \/\ \/\ __//\ \_\ \ \ \_/ |\ \ \/\ \/\ \/\ \ ]],
|
||||
[[\ \_\ \_\ \____\ \____/\ \___/ \ \_\ \_\ \_\ \_\]],
|
||||
[[ \/_/\/_/\/____/\/___/ \/__/ \/_/\/_/\/_/\/_/]],
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
require("hammy.plugin.cmp")
|
||||
require("hammy.plugin.treesitter")
|
||||
require("hammy.plugin.telescope")
|
||||
require("hammy.plugin.dashboard")
|
||||
require("hammy.plugin.nvimtree")
|
||||
|
||||
-- Enable/Disable Lvim Plugins
|
||||
lvim.builtin.project.active = true
|
||||
lvim.builtin.bufferline.active = false
|
||||
lvim.builtin.breadcrumbs.active = true
|
||||
lvim.builtin.terminal.active = false
|
||||
lvim.builtin.indentlines.active = false
|
||||
lvim.builtin.illuminate.active = false
|
||||
|
@ -0,0 +1,2 @@
|
||||
lvim.builtin.nvimtree.setup.view.side = "left"
|
||||
lvim.builtin.nvimtree.setup.renderer.icons.show.git = true
|
@ -0,0 +1,38 @@
|
||||
lvim.builtin.telescope.defaults.prompt_prefix = "🔍 "
|
||||
lvim.builtin.telescope.defaults.selection_caret = "> "
|
||||
lvim.builtin.telescope.defaults.file_ignore_patterns = { ".git/" }
|
||||
|
||||
lvim.builtin.which_key.mappings["f"] = {
|
||||
name = "Find",
|
||||
b = { "<cmd>Telescope buffers<CR>", "Open Buffers" },
|
||||
f = { "<cmd>Telescope find_files<CR>", "Find File" },
|
||||
h = { "<cmd>Telescope help_tags<CR>", "Find Help" },
|
||||
H = { "<cmd>Telescope highlights<CR>", "Find Highlights" },
|
||||
g = { "<cmd>Telescope live_grep<CR>", "Find Text" },
|
||||
R = { "<cmd>Telescope registers<CR>", "Find Registers" },
|
||||
k = { "<cmd>Telescope keymaps<CR>", "Find Keymaps" },
|
||||
c = {
|
||||
"<cmd>Telescope current_buffer_fuzzy_find<CR>",
|
||||
"Find Text In Current Buffer",
|
||||
},
|
||||
C = { "<cmd>Telescope commands<CR>", "Find Commands" },
|
||||
r = { "<cmd>Telescope oldfiles<CR>", "Open Recent File" },
|
||||
p = { "<cmd>Telescope projects<CR>", "Open Projects" },
|
||||
d = { "<cmd>Easypick chezmoi<CR>", "Open Dotfiles" },
|
||||
}
|
||||
|
||||
local _, actions = pcall(require, "telescope.actions")
|
||||
lvim.builtin.telescope.defaults.mappings = {
|
||||
i = {
|
||||
["<A-j>"] = actions.move_selection_next,
|
||||
["<A-k>"] = actions.move_selection_previous,
|
||||
["<A-n>"] = actions.cycle_history_next,
|
||||
["<A-p>"] = actions.cycle_history_prev,
|
||||
},
|
||||
n = {
|
||||
["<A-j>"] = actions.move_selection_next,
|
||||
["<A-k>"] = actions.move_selection_previous,
|
||||
["<A-n>"] = actions.preview_scrolling_down,
|
||||
["<A-p>"] = actions.preview_scrolling_up,
|
||||
},
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
lvim.builtin.treesitter.rainbow.enable = true
|
||||
lvim.builtin.treesitter.highlight.enable = true
|
||||
lvim.builtin.treesitter.ensure_installed = "all"
|
@ -0,0 +1,32 @@
|
||||
-- unmapping defaults
|
||||
lvim.keys.normal_mode["<C-j>"] = false
|
||||
lvim.keys.normal_mode["<C-l>"] = false
|
||||
lvim.keys.normal_mode["<C-k>"] = false
|
||||
lvim.keys.insert_mode["<M-j>"] = false
|
||||
lvim.keys.insert_mode["<M-k>"] = false
|
||||
lvim.builtin.which_key.mappings["s"] = nil
|
||||
|
||||
-- navigation
|
||||
lvim.keys.normal_mode["<M-j>"] = "<C-w>j"
|
||||
lvim.keys.normal_mode["<M-k>"] = "<C-w>k"
|
||||
lvim.keys.normal_mode["<M-l>"] = "<C-w>l"
|
||||
lvim.keys.normal_mode["<M-h>"] = "<C-w>h"
|
||||
|
||||
-- useful
|
||||
lvim.keys.normal_mode["<C-u>"] = "<C-u>zz"
|
||||
lvim.keys.normal_mode["<C-d>"] = "<C-d>zz"
|
||||
lvim.keys.normal_mode["J"] = "mzJ`z"
|
||||
lvim.keys.normal_mode["n"] = "nzzzv"
|
||||
lvim.keys.normal_mode["N"] = "Nzzzv"
|
||||
lvim.keys.normal_mode["<CR>"] = "o<ESC>"
|
||||
lvim.keys.normal_mode["0"] = "^"
|
||||
lvim.keys.normal_mode["[d"] = ":lua vim.diagnostic.goto_prev()<CR>"
|
||||
lvim.keys.normal_mode["]d"] = ":lua vim.diagnostic.goto_next()<CR>"
|
||||
lvim.keys.normal_mode["[c"] = ":lua require('gitsigns').prev_hunk()<CR>"
|
||||
lvim.keys.normal_mode["]c"] = ":lua require('gitsigns').next_hunk()<CR>"
|
||||
|
||||
-- clipboard
|
||||
lvim.keys.visual_block_mode["<leader>p"] = [["_dp]]
|
||||
lvim.keys.visual_mode["<leader>y"] = [["+y]]
|
||||
lvim.keys.normal_mode["<leader>y"] = [["+y]]
|
||||
lvim.keys.normal_mode["<leader>Y"] = [["+Y]]
|
@ -0,0 +1,14 @@
|
||||
vim.opt.timeoutlen = 500
|
||||
vim.opt.relativenumber = true
|
||||
vim.opt.laststatus = 3
|
||||
vim.opt.pumheight = 20
|
||||
vim.opt.clipboard = ""
|
||||
vim.opt.lazyredraw = true
|
||||
vim.opt.showtabline = 0
|
||||
vim.opt.completeopt = [[menuone,noinsert,noselect]]
|
||||
|
||||
-- Lvim Related Stuffs
|
||||
lvim.log.level = "warn"
|
||||
lvim.format_on_save = false
|
||||
lvim.colorscheme = "catppuccin"
|
||||
lvim.leader = "space"
|
@ -0,0 +1,7 @@
|
||||
column_width = 120
|
||||
line_endings = "Unix"
|
||||
indent_type = "Spaces"
|
||||
indent_width = 2
|
||||
quote_style = "AutoPreferDouble"
|
||||
call_parentheses = "Always"
|
||||
collapse_simple_statement = "Never"
|
Loading…
Reference in New Issue