aboutsummaryrefslogtreecommitdiff
path: root/store/home/config/nvim/lua/crupest/nvim
diff options
context:
space:
mode:
Diffstat (limited to 'store/home/config/nvim/lua/crupest/nvim')
-rw-r--r--store/home/config/nvim/lua/crupest/nvim/keymap.lua9
-rw-r--r--store/home/config/nvim/lua/crupest/nvim/lsp/c.lua25
-rw-r--r--store/home/config/nvim/lua/crupest/nvim/lsp/init.lua25
-rw-r--r--store/home/config/nvim/lua/crupest/nvim/lsp/lua.lua29
-rw-r--r--store/home/config/nvim/lua/crupest/nvim/plugins/cmp.lua34
-rw-r--r--store/home/config/nvim/lua/crupest/nvim/plugins/gitsigns.lua51
-rw-r--r--store/home/config/nvim/lua/crupest/nvim/plugins/init.lua12
-rw-r--r--store/home/config/nvim/lua/crupest/nvim/plugins/lint.lua85
-rw-r--r--store/home/config/nvim/lua/crupest/nvim/plugins/others.lua9
-rw-r--r--store/home/config/nvim/lua/crupest/nvim/plugins/snip.lua75
-rw-r--r--store/home/config/nvim/lua/crupest/nvim/plugins/telescope.lua11
11 files changed, 0 insertions, 365 deletions
diff --git a/store/home/config/nvim/lua/crupest/nvim/keymap.lua b/store/home/config/nvim/lua/crupest/nvim/keymap.lua
deleted file mode 100644
index 624c04c..0000000
--- a/store/home/config/nvim/lua/crupest/nvim/keymap.lua
+++ /dev/null
@@ -1,9 +0,0 @@
-local function setup()
- vim.keymap.set("n", "<c-tab>", "<cmd>bnext<cr>")
- vim.keymap.set("n", "<c-s-tab>", "<cmd>bNext<cr>")
- vim.keymap.set("n", "<esc>", require("crupest.utils.nvim").close_float)
-end
-
-return {
- setup = setup
-}
diff --git a/store/home/config/nvim/lua/crupest/nvim/lsp/c.lua b/store/home/config/nvim/lua/crupest/nvim/lsp/c.lua
deleted file mode 100644
index 6080510..0000000
--- a/store/home/config/nvim/lua/crupest/nvim/lsp/c.lua
+++ /dev/null
@@ -1,25 +0,0 @@
-local lspconfig = require("lspconfig")
-
-local brew_clangd_path = "/usr/local/opt/llvm/bin/clangd"
-
-local function setup()
- local clangd = "clangd"
-
- if vim.uv.fs_stat(brew_clangd_path) ~= nil then
- clangd = brew_clangd_path
- end
-
- -- setup lsp clangd
- lspconfig.clangd.setup {
- cmd = { clangd },
- on_attach = function(_, bufnr)
- vim.keymap.set('n', 'grs', "<cmd>ClangdSwitchSourceHeader<cr>", {
- buffer = bufnr
- })
- end
- }
-end
-
-return {
- setup = setup
-}
diff --git a/store/home/config/nvim/lua/crupest/nvim/lsp/init.lua b/store/home/config/nvim/lua/crupest/nvim/lsp/init.lua
deleted file mode 100644
index ba11087..0000000
--- a/store/home/config/nvim/lua/crupest/nvim/lsp/init.lua
+++ /dev/null
@@ -1,25 +0,0 @@
-local lspconfig = require("lspconfig")
-local cmp_nvim_lsp = require("cmp_nvim_lsp")
-local cmp_default_caps = cmp_nvim_lsp.default_capabilities()
-
-local lspconfig_default_caps = lspconfig.util.default_config.capabilities
-
-lspconfig.util.default_config = vim.tbl_extend(
- "force",
- lspconfig.util.default_config,
- {
- capabilities = vim.tbl_extend("force", lspconfig_default_caps, cmp_default_caps),
- autostart = false,
- })
-
-local function setup()
- lspconfig.cmake.setup {}
- lspconfig.bashls.setup {}
- require("crupest.nvim.lsp.c").setup()
- require("crupest.nvim.lsp.lua").setup()
-end
-
-
-return {
- setup = setup
-}
diff --git a/store/home/config/nvim/lua/crupest/nvim/lsp/lua.lua b/store/home/config/nvim/lua/crupest/nvim/lsp/lua.lua
deleted file mode 100644
index 93aa503..0000000
--- a/store/home/config/nvim/lua/crupest/nvim/lsp/lua.lua
+++ /dev/null
@@ -1,29 +0,0 @@
-local lspconfig = require("lspconfig")
-
-local function setup()
- lspconfig.lua_ls.setup {
- settings = {
- Lua = {
- runtime = {
- version = "LuaJIT"
- },
- diagnostics = {
- globals = { "vim" },
- },
- workspace = {
- library = {
- [vim.fn.expand "$VIMRUNTIME/lua"] = true,
- [vim.fn.expand "$VIMRUNTIME/lua/vim/lsp"] = true,
- [vim.fn.stdpath "data" .. "/lazy/lazy.nvim/lua/lazy"] = true,
- },
- maxPreload = 100000,
- preloadFileSize = 10000,
- },
- },
- },
- }
-end
-
-return {
- setup = setup
-}
diff --git a/store/home/config/nvim/lua/crupest/nvim/plugins/cmp.lua b/store/home/config/nvim/lua/crupest/nvim/plugins/cmp.lua
deleted file mode 100644
index 2244443..0000000
--- a/store/home/config/nvim/lua/crupest/nvim/plugins/cmp.lua
+++ /dev/null
@@ -1,34 +0,0 @@
-local function setup()
- local cmp = require("cmp")
- local luasnip = require("luasnip")
-
- cmp.setup {
- snippet = {
- expand = function(args)
- luasnip.lsp_expand(args.body)
- end,
- },
- window = {
- completion = cmp.config.window.bordered(),
- documentation = cmp.config.window.bordered(),
- },
- mapping = cmp.mapping.preset.insert({
- ['<C-b>'] = cmp.mapping.scroll_docs(-4),
- ['<C-f>'] = cmp.mapping.scroll_docs(4),
- ['<C-j>'] = cmp.mapping.select_next_item({ behavior = cmp.SelectBehavior.Select }),
- ['<C-k>'] = cmp.mapping.select_prev_item({ behavior = cmp.SelectBehavior.Select }),
- ['<C-y>'] = cmp.mapping.confirm({ select = true }),
- ['<CR>'] = cmp.mapping.confirm({ select = true }),
- }),
- sources = cmp.config.sources({
- { name = 'nvim_lsp' },
- { name = 'luasnip' },
- }, {
- { name = 'buffer' },
- })
- }
-end
-
-return {
- setup = setup
-}
diff --git a/store/home/config/nvim/lua/crupest/nvim/plugins/gitsigns.lua b/store/home/config/nvim/lua/crupest/nvim/plugins/gitsigns.lua
deleted file mode 100644
index 220c91a..0000000
--- a/store/home/config/nvim/lua/crupest/nvim/plugins/gitsigns.lua
+++ /dev/null
@@ -1,51 +0,0 @@
-local function setup()
- local gitsigns = require('gitsigns')
- gitsigns.setup {
- on_attach = function(bufnr)
- local function map(mode, l, r, opts)
- opts = opts or {}
- opts.buffer = bufnr
- vim.keymap.set(mode, l, r, opts)
- end
-
- -- Navigation
- map('n', ']c', function()
- if vim.wo.diff then
- vim.cmd.normal({ ']c', bang = true })
- else
- gitsigns.nav_hunk('next')
- end
- end)
-
- map('n', '[c', function()
- if vim.wo.diff then
- vim.cmd.normal({ '[c', bang = true })
- else
- gitsigns.nav_hunk('prev')
- end
- end)
-
- -- Actions
- map('n', '<leader>hs', gitsigns.stage_hunk)
- map('n', '<leader>hr', gitsigns.reset_hunk)
- map('v', '<leader>hs', function() gitsigns.stage_hunk { vim.fn.line('.'), vim.fn.line('v') } end)
- map('v', '<leader>hr', function() gitsigns.reset_hunk { vim.fn.line('.'), vim.fn.line('v') } end)
- map('n', '<leader>hS', gitsigns.stage_buffer)
- map('n', '<leader>hu', gitsigns.undo_stage_hunk)
- map('n', '<leader>hR', gitsigns.reset_buffer)
- map('n', '<leader>hp', gitsigns.preview_hunk)
- map('n', '<leader>hb', function() gitsigns.blame_line { full = true } end)
- map('n', '<leader>tb', gitsigns.toggle_current_line_blame)
- map('n', '<leader>hd', gitsigns.diffthis)
- map('n', '<leader>hD', function() gitsigns.diffthis('~') end)
- map('n', '<leader>td', gitsigns.toggle_deleted)
-
- -- Text object
- map({ 'o', 'x' }, 'ih', ':<C-U>Gitsigns select_hunk<CR>')
- end
- }
-end
-
-return {
- setup = setup
-}
diff --git a/store/home/config/nvim/lua/crupest/nvim/plugins/init.lua b/store/home/config/nvim/lua/crupest/nvim/plugins/init.lua
deleted file mode 100644
index 24e0c2e..0000000
--- a/store/home/config/nvim/lua/crupest/nvim/plugins/init.lua
+++ /dev/null
@@ -1,12 +0,0 @@
-local function setup()
- require("crupest.nvim.plugins.lint").setup()
- require("crupest.nvim.plugins.snip").setup()
- require("crupest.nvim.plugins.cmp").setup()
- require("crupest.nvim.plugins.telescope").setup()
- require("crupest.nvim.plugins.gitsigns").setup()
- require("crupest.nvim.plugins.others").setup()
-end
-
-return {
- setup = setup
-}
diff --git a/store/home/config/nvim/lua/crupest/nvim/plugins/lint.lua b/store/home/config/nvim/lua/crupest/nvim/plugins/lint.lua
deleted file mode 100644
index e2dff1b..0000000
--- a/store/home/config/nvim/lua/crupest/nvim/plugins/lint.lua
+++ /dev/null
@@ -1,85 +0,0 @@
-local lint = require("lint")
-
-local cspell = {
- name = "cspell",
- config_patterns = {
- ".cspell.json",
- "cspell.json",
- ".cSpell.json",
- "cSpell.json",
- "cspell.config.js",
- "cspell.config.cjs",
- "cspell.config.json",
- "cspell.config.yaml",
- "cspell.config.yml",
- "cspell.yaml",
- "cspell.yml",
- },
- fast = true,
- initialized = false
-}
-
-local linters = { cspell }
-
-local linter_names = vim.tbl_map(function(l) return l.name end, linters)
-
-local function cru_lint(linter, opt)
- opt = opt or {}
-
- if not opt.buf then
- opt.buf = 0
- end
-
- if 0 ~= #vim.fs.find(linter.config_patterns, {
- path = vim.api.nvim_buf_get_name(opt.buf), upward = true }) then
- if not linter.initialized then
- vim.diagnostic.config({ virtual_text = true }, lint.get_namespace(linter.name))
- linter.initialized = true
- end
- lint.try_lint(linter.name)
- end
-end
-
-local function cru_lint_one(name, opt)
- for _, linter in ipairs(linters) do
- if linter.name == name then
- cru_lint(linter, opt)
- return
- end
- end
- vim.notify("No linter named " .. name .. " is configured.", vim.log.levels.ERROR, {})
-end
-
-local function cru_lint_all(opt, fast)
- for _, linter in ipairs(linters) do
- if not fast or linter.fast then
- cru_lint(linter, opt)
- end
- end
-end
-
-local function cru_lint_all_fast(opt)
- local buf = opt.buf
- if vim.api.nvim_get_option_value("buftype", { buf = buf }) == "" then
- cru_lint_all(opt, true)
- end
-end
-
-local function setup()
- vim.api.nvim_create_autocmd({ "BufReadPost", "InsertLeave", "TextChanged" }, { callback = cru_lint_all_fast })
-
- local function cru_lint_cmd(opt)
- if #opt.args == 0 then
- cru_lint_all(opt, false)
- else
- cru_lint_one(opt.args, opt)
- end
- end
-
- vim.api.nvim_create_user_command("CruLint", cru_lint_cmd,
- { nargs = '?', complete = function() return linter_names end })
-end
-
-return {
- setup = setup,
-}
diff --git a/store/home/config/nvim/lua/crupest/nvim/plugins/others.lua b/store/home/config/nvim/lua/crupest/nvim/plugins/others.lua
deleted file mode 100644
index 2ef0d75..0000000
--- a/store/home/config/nvim/lua/crupest/nvim/plugins/others.lua
+++ /dev/null
@@ -1,9 +0,0 @@
-local function setup()
- require('lualine').setup {}
- require("nvim-tree").setup {}
- require("nvim-autopairs").setup {}
-end
-
-return {
- setup = setup
-}
diff --git a/store/home/config/nvim/lua/crupest/nvim/plugins/snip.lua b/store/home/config/nvim/lua/crupest/nvim/plugins/snip.lua
deleted file mode 100644
index 78ed2eb..0000000
--- a/store/home/config/nvim/lua/crupest/nvim/plugins/snip.lua
+++ /dev/null
@@ -1,75 +0,0 @@
---- spellchecker: disable
-
-local luasnip = require("luasnip")
-
-local ls = luasnip
--- some shorthands...
-local s = ls.snippet
-local sn = ls.snippet_node
-local t = ls.text_node
-local i = ls.insert_node
-local f = ls.function_node
-local c = ls.choice_node
-local d = ls.dynamic_node
-local r = ls.restore_node
-local l = require("luasnip.extras").lambda
-local rep = require("luasnip.extras").rep
-local p = require("luasnip.extras").partial
-local m = require("luasnip.extras").match
-local n = require("luasnip.extras").nonempty
-local dl = require("luasnip.extras").dynamic_lambda
-local fmt = require("luasnip.extras.fmt").fmt
-local fmta = require("luasnip.extras.fmt").fmta
-local types = require("luasnip.util.types")
-local conds = require("luasnip.extras.conditions")
-local conds_expand = require("luasnip.extras.conditions.expand")
-
-local function copy(args)
- return args[1]
-end
-
-local function setup()
- vim.keymap.set({ "i", "s" }, "<C-L>", function() luasnip.jump(1) end, { silent = true })
- vim.keymap.set({ "i", "s" }, "<C-J>", function() luasnip.jump(-1) end, { silent = true })
-
- vim.keymap.set({ "i", "s" }, "<C-E>", function()
- if luasnip.choice_active() then
- luasnip.change_choice(1)
- end
- end, { silent = true })
-
- luasnip.add_snippets("cpp", {
- s("cs", {
- i(1, "classname"),
- t("::"),
- f(copy, 1),
- t("("),
- i(0),
- t(") { }")
- }),
-
- s("ds", {
- i(1, "classname"),
- t("::~"),
- f(copy, 1),
- t("() { }")
- }),
-
- s("csds", {
- i(1, "classname"),
- t("::"),
- f(copy, 1),
- t("("),
- i(0),
- t({ ") { }", "", "" }),
- f(copy, 1),
- t("::~"),
- f(copy, 1),
- t("() { }")
- }),
- })
-end
-
-return {
- setup = setup,
-}
diff --git a/store/home/config/nvim/lua/crupest/nvim/plugins/telescope.lua b/store/home/config/nvim/lua/crupest/nvim/plugins/telescope.lua
deleted file mode 100644
index d68b7f2..0000000
--- a/store/home/config/nvim/lua/crupest/nvim/plugins/telescope.lua
+++ /dev/null
@@ -1,11 +0,0 @@
-local function setup()
- local builtin = require('telescope.builtin')
- vim.keymap.set('n', '<leader>ff', builtin.find_files, {})
- vim.keymap.set('n', '<leader>fg', builtin.live_grep, {})
- vim.keymap.set('n', '<leader>fb', builtin.buffers, {})
- vim.keymap.set('n', '<leader>fh', builtin.help_tags, {})
-end
-
-return {
- setup = setup
-}