326 lines
9.3 KiB
Lua
326 lines
9.3 KiB
Lua
-- vim.opt.runtimepath:append(',~/.config/nvim/lua')
|
|
require "plugin"
|
|
|
|
-- Automatically source and re-compile packer whenever you save this init.lua
|
|
local packer_group = vim.api.nvim_create_augroup('Packer', { clear = true })
|
|
vim.api.nvim_create_autocmd('BufWritePost', {
|
|
command = 'source <afile> | silent! LspStop | silent! LspStart | PackerCompile',
|
|
group = packer_group,
|
|
pattern = vim.fn.expand '$MYVIMRC',
|
|
})
|
|
|
|
require "option"
|
|
|
|
-- file explorer setup
|
|
require("nvim-tree").setup()
|
|
|
|
-- bufferline setup
|
|
require("bufferline").setup{
|
|
options = {
|
|
offsets = {
|
|
{
|
|
filetype = "NvimTree",
|
|
text = "File Explorer",
|
|
highlight = "Directory",
|
|
separator = true -- use a "true" to enable the default, or set your own character
|
|
}
|
|
},
|
|
}
|
|
}
|
|
|
|
-- lastplace setup
|
|
require("nvim-lastplace").setup{
|
|
lastplace_ignore_buftype = { "quickfix", "nofile", "help" },
|
|
lastplace_ignore_filetype = {
|
|
"gitcommit", "gitrebase", "svn", "hgcommit",
|
|
},
|
|
lastplace_open_folds = true,
|
|
}
|
|
|
|
-- Set lualine as statusline
|
|
-- See `:help lualine.txt`
|
|
require('lualine').setup {
|
|
options = {
|
|
icons_enabled = false,
|
|
theme = 'sonokai',
|
|
component_separators = '|',
|
|
section_separators = '',
|
|
},
|
|
}
|
|
|
|
-- Enable Comment.nvim
|
|
require('Comment').setup{
|
|
opleader = {
|
|
---Line-comment keymap
|
|
line = '<leader>/',
|
|
---Block-comment keymap
|
|
block = 'gb',
|
|
},
|
|
}
|
|
|
|
-- Enable `lukas-reineke/indent-blankline.nvim`
|
|
-- See `:help indent_blankline.txt`
|
|
require('indent_blankline').setup {
|
|
char = '┊',
|
|
show_trailing_blankline_indent = false,
|
|
}
|
|
|
|
-- Gitsigns
|
|
-- See `:help gitsigns.txt`
|
|
require('gitsigns').setup {
|
|
signs = {
|
|
add = { text = '+' },
|
|
change = { text = '~' },
|
|
delete = { text = '_' },
|
|
topdelete = { text = '‾' },
|
|
changedelete = { text = '~' },
|
|
},
|
|
}
|
|
|
|
-- [[ Configure Telescope ]]
|
|
-- See `:help telescope` and `:help telescope.setup()`
|
|
require('telescope').setup {
|
|
defaults = {
|
|
mappings = {
|
|
i = {
|
|
['<C-u>'] = false,
|
|
['<C-d>'] = false,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
require "keymap"
|
|
|
|
-- LSP settings.
|
|
-- This function gets run when an LSP connects to a particular buffer.
|
|
local on_attach = function(_, bufnr)
|
|
-- NOTE: Remember that lua is a real programming language, and as such it is possible
|
|
-- to define small helper and utility functions so you don't have to repeat yourself
|
|
-- many times.
|
|
--
|
|
-- In this case, we create a function that lets us more easily define mappings specific
|
|
-- for LSP related items. It sets the mode, buffer and description for us each time.
|
|
local nmap = function(keys, func, desc)
|
|
-- if desc then
|
|
-- desc = 'LSP: ' .. desc
|
|
-- end
|
|
|
|
vim.keymap.set('n', keys, func, { buffer = bufnr, desc = desc })
|
|
end
|
|
|
|
nmap('<leader>lr', vim.lsp.buf.rename, 'Rename')
|
|
nmap('<leader>lc', vim.lsp.buf.code_action, 'Code Action')
|
|
|
|
nmap('gd', vim.lsp.buf.definition, 'Goto Definition')
|
|
nmap('gr', require('telescope.builtin').lsp_references, 'Goto References')
|
|
nmap('gI', vim.lsp.buf.implementation, 'Goto Implementation')
|
|
nmap('<leader>D', vim.lsp.buf.type_definition, 'Type Definition')
|
|
nmap('gl', vim.diagnostic.open_float, 'Current line diagnostics')
|
|
nmap('<leader>ls', require('telescope.builtin').lsp_document_symbols, 'Document Symbols')
|
|
nmap('<leader>lw', require('telescope.builtin').lsp_dynamic_workspace_symbols, 'Workspace Symbols')
|
|
|
|
-- See `:help K` for why this keymap
|
|
nmap('K', vim.lsp.buf.hover, 'Hover Documentation')
|
|
nmap('<C-k>', vim.lsp.buf.signature_help, 'Signature Documentation')
|
|
|
|
-- Lesser used LSP functionality
|
|
nmap('gD', vim.lsp.buf.declaration, 'Goto Declaration')
|
|
-- nmap('<leader>wa', vim.lsp.buf.add_workspace_folder, '[W]orkspace [A]dd Folder')
|
|
-- nmap('<leader>wr', vim.lsp.buf.remove_workspace_folder, '[W]orkspace [R]emove Folder')
|
|
-- nmap('<leader>wl', function()
|
|
-- print(vim.inspect(vim.lsp.buf.list_workspace_folders()))
|
|
-- end, '[W]orkspace [L]ist Folders')
|
|
--
|
|
-- Create a command `:Format` local to the LSP buffer
|
|
vim.api.nvim_buf_create_user_command(bufnr, 'Format', function(_)
|
|
vim.lsp.buf.format()
|
|
end, { desc = 'Format current buffer with LSP' })
|
|
end
|
|
|
|
-- [[ Configure Treesitter ]]
|
|
-- See `:help nvim-treesitter`
|
|
require('nvim-treesitter.configs').setup {
|
|
-- Add languages to be installed here that you want installed for treesitter
|
|
ensure_installed = { 'c', 'cpp', 'rust', 'go', 'lua', 'python', 'rust', 'typescript', 'help', 'vim' },
|
|
|
|
highlight = { enable = true },
|
|
indent = { enable = true, disable = { 'python', 'c', 'cpp' } },
|
|
incremental_selection = {
|
|
enable = true,
|
|
keymaps = {
|
|
init_selection = '<c-space>',
|
|
node_incremental = '<c-space>',
|
|
scope_incremental = '<c-s>',
|
|
node_decremental = '<c-backspace>',
|
|
},
|
|
},
|
|
textobjects = {
|
|
select = {
|
|
enable = true,
|
|
lookahead = true, -- Automatically jump forward to textobj, similar to targets.vim
|
|
keymaps = {
|
|
-- You can use the capture groups defined in textobjects.scm
|
|
['aa'] = '@parameter.outer',
|
|
['ia'] = '@parameter.inner',
|
|
['af'] = '@function.outer',
|
|
['if'] = '@function.inner',
|
|
['ac'] = '@class.outer',
|
|
['ic'] = '@class.inner',
|
|
},
|
|
},
|
|
move = {
|
|
enable = true,
|
|
set_jumps = true, -- whether to set jumps in the jumplist
|
|
goto_next_start = {
|
|
[']m'] = '@function.outer',
|
|
[']]'] = '@class.outer',
|
|
},
|
|
goto_next_end = {
|
|
[']M'] = '@function.outer',
|
|
[']['] = '@class.outer',
|
|
},
|
|
goto_previous_start = {
|
|
['[m'] = '@function.outer',
|
|
['[['] = '@class.outer',
|
|
},
|
|
goto_previous_end = {
|
|
['[M'] = '@function.outer',
|
|
['[]'] = '@class.outer',
|
|
},
|
|
},
|
|
swap = {
|
|
enable = true,
|
|
swap_next = {
|
|
['<leader>a'] = '@parameter.inner',
|
|
},
|
|
swap_previous = {
|
|
['<leader>A'] = '@parameter.inner',
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
|
|
-- Enable the following language servers
|
|
-- Feel free to add/remove any LSPs that you want here. They will automatically be installed.
|
|
--
|
|
-- Add any additional override configuration in the following tables. They will be passed to
|
|
-- the `settings` field of the server config. You must look up that documentation yourself.
|
|
local servers = {
|
|
clangd = {},
|
|
gopls = {},
|
|
-- pyright = {},
|
|
rust_analyzer = {},
|
|
-- tsserver = {},
|
|
|
|
lua_ls = {
|
|
Lua = {
|
|
workspace = { checkThirdParty = false },
|
|
telemetry = { enable = false },
|
|
},
|
|
},
|
|
}
|
|
|
|
-- Setup neovim lua configuration
|
|
require('neodev').setup()
|
|
--
|
|
-- nvim-cmp supports additional completion capabilities, so broadcast that to servers
|
|
local capabilities = vim.lsp.protocol.make_client_capabilities()
|
|
capabilities = require('cmp_nvim_lsp').default_capabilities(capabilities)
|
|
|
|
-- Setup mason so it can manage external tooling
|
|
require('mason').setup()
|
|
|
|
-- Ensure the servers above are installed
|
|
local mason_lspconfig = require 'mason-lspconfig'
|
|
local coq = require 'coq'
|
|
|
|
mason_lspconfig.setup {
|
|
ensure_installed = vim.tbl_keys(servers),
|
|
}
|
|
|
|
|
|
mason_lspconfig.setup_handlers {
|
|
function(server_name)
|
|
require('lspconfig')[server_name].setup {
|
|
-- capabilities = coq.lsp_ensure_capabilities(),
|
|
capabilities = capabilities,
|
|
on_attach = on_attach,
|
|
settings = servers[server_name],
|
|
}
|
|
end,
|
|
}
|
|
-- Turn on lsp status information
|
|
require('fidget').setup()
|
|
|
|
-- highlight trailing whitespace
|
|
vim.cmd([[
|
|
autocmd VimEnter * autocmd WinEnter * let w:created=1
|
|
autocmd VimEnter * let w:created=1
|
|
highlight WhitespaceEOL ctermbg=red ctermfg=white guibg=#592929
|
|
autocmd BufWritePost *
|
|
\ if !exists('w:created') | call matchadd('WhitespaceEOL', '\s\+$') | endif
|
|
call matchadd('WhitespaceEOL', '\s\+$')
|
|
]])
|
|
|
|
|
|
local hop = require('hop')
|
|
local directions = require('hop.hint').HintDirection
|
|
vim.keymap.set('n', '<leader>f', function()
|
|
hop.hint_words({ direction = directions.AFTER_CURSOR, current_line_only = false })
|
|
end, {remap=true})
|
|
|
|
vim.keymap.set('n', '<leader>F', function()
|
|
hop.hint_words({ direction = directions.BEFORE_CURSOR, current_line_only = false })
|
|
end, {remap=true})
|
|
|
|
-- nvim-cmp setup
|
|
local cmp = require 'cmp'
|
|
local luasnip = require 'luasnip'
|
|
|
|
-- load luasnip snippets
|
|
-- require("luasnip.loaders.from_lua").load({paths = "~/.config/nvim/luasnip/"})
|
|
|
|
cmp.setup {
|
|
snippet = {
|
|
expand = function(args)
|
|
luasnip.lsp_expand(args.body)
|
|
end,
|
|
},
|
|
mapping = cmp.mapping.preset.insert {
|
|
['<C-d>'] = cmp.mapping.scroll_docs(-4),
|
|
['<C-f>'] = cmp.mapping.scroll_docs(4),
|
|
['<C-Space>'] = cmp.mapping.complete(),
|
|
['<CR>'] = cmp.mapping.confirm {
|
|
behavior = cmp.ConfirmBehavior.Replace,
|
|
select = true,
|
|
},
|
|
['<Tab>'] = cmp.mapping(function(fallback)
|
|
if cmp.visible() then
|
|
cmp.select_next_item()
|
|
elseif luasnip.expand_or_locally_jumpable() then
|
|
luasnip.expand_or_jump()
|
|
else
|
|
fallback()
|
|
end
|
|
end, { 'i', 's' }),
|
|
['<S-Tab>'] = cmp.mapping(function(fallback)
|
|
if cmp.visible() then
|
|
cmp.select_prev_item()
|
|
elseif luasnip.expand_or_jumpable() then
|
|
luasnip.expand_or_jump()
|
|
else
|
|
fallback()
|
|
end
|
|
end, { 'i', 's' }),
|
|
},
|
|
sources = {
|
|
{ name = 'nvim_lsp' },
|
|
{ name = 'luasnip' },
|
|
},
|
|
}
|
|
|
|
-- The line beneath this is called `modeline`. See `:help modeline`
|
|
-- vim: ts=2 sts=2 sw=2 et
|