2023-08-01 15:38:01 -03:00
|
|
|
-- https://learnxinyminutes.com/docs/lua/
|
2023-02-17 18:31:57 -03:00
|
|
|
|
|
|
|
vim.g.mapleader = ' '
|
|
|
|
vim.g.maplocalleader = ' '
|
|
|
|
|
|
|
|
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
|
|
|
|
if not vim.loop.fs_stat(lazypath) then
|
|
|
|
vim.fn.system {
|
|
|
|
'git',
|
|
|
|
'clone',
|
|
|
|
'--filter=blob:none',
|
|
|
|
'https://github.com/folke/lazy.nvim.git',
|
|
|
|
'--branch=stable', -- latest stable release
|
|
|
|
lazypath,
|
|
|
|
}
|
2022-06-24 00:35:53 -03:00
|
|
|
end
|
2023-02-17 18:31:57 -03:00
|
|
|
vim.opt.rtp:prepend(lazypath)
|
2022-06-24 00:35:53 -03:00
|
|
|
|
2023-02-17 18:31:57 -03:00
|
|
|
require('lazy').setup({
|
|
|
|
-- Git related plugins
|
|
|
|
'tpope/vim-fugitive',
|
|
|
|
'tpope/vim-rhubarb',
|
|
|
|
-- Detect tabstop and shiftwidth automatically
|
|
|
|
'tpope/vim-sleuth',
|
2023-05-08 07:02:37 -03:00
|
|
|
{
|
|
|
|
-- LSP Configuration & Plugins
|
2022-11-18 23:04:04 -03:00
|
|
|
'neovim/nvim-lspconfig',
|
2023-02-17 18:31:57 -03:00
|
|
|
dependencies = {
|
2022-11-18 23:04:04 -03:00
|
|
|
-- Automatically install LSPs to stdpath for neovim
|
2023-04-13 10:34:06 -03:00
|
|
|
{ 'williamboman/mason.nvim', config = true },
|
2022-11-18 23:04:04 -03:00
|
|
|
'williamboman/mason-lspconfig.nvim',
|
|
|
|
|
2023-08-01 20:43:02 -03:00
|
|
|
{
|
|
|
|
'j-hui/fidget.nvim',
|
|
|
|
tag = 'legacy',
|
|
|
|
opts = {
|
|
|
|
window = {
|
|
|
|
blend = 0,
|
|
|
|
border = "rounded",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2022-12-21 00:12:39 -03:00
|
|
|
|
|
|
|
'folke/neodev.nvim',
|
2022-11-18 23:04:04 -03:00
|
|
|
},
|
2023-02-17 18:31:57 -03:00
|
|
|
},
|
2022-11-18 23:04:04 -03:00
|
|
|
|
|
|
|
|
2023-02-17 18:31:57 -03:00
|
|
|
-- Useful plugin to show you pending keybinds.
|
2023-08-01 15:38:01 -03:00
|
|
|
{ 'folke/which-key.nvim', opts = {} },
|
2023-05-08 07:02:37 -03:00
|
|
|
{
|
2023-07-30 14:46:27 -03:00
|
|
|
-- Adds git related signs to the gutter, as well as utilities for managing changes
|
2023-02-17 18:31:57 -03:00
|
|
|
'lewis6991/gitsigns.nvim',
|
|
|
|
opts = {
|
|
|
|
-- See `:help gitsigns.txt`
|
|
|
|
signs = {
|
|
|
|
add = { text = '+' },
|
|
|
|
change = { text = '~' },
|
|
|
|
delete = { text = '_' },
|
|
|
|
topdelete = { text = '‾' },
|
|
|
|
changedelete = { text = '~' },
|
|
|
|
},
|
2023-02-26 23:03:34 -03:00
|
|
|
on_attach = function(bufnr)
|
2023-08-01 15:38:01 -03:00
|
|
|
vim.keymap.set('n', '<leader>gp', require('gitsigns').prev_hunk,
|
|
|
|
{ buffer = bufnr, desc = '[G]o to [P]revious Hunk' })
|
2023-06-04 13:10:59 -03:00
|
|
|
vim.keymap.set('n', '<leader>gn', require('gitsigns').next_hunk, { buffer = bufnr, desc = '[G]o to [N]ext Hunk' })
|
2023-03-06 23:26:20 -03:00
|
|
|
vim.keymap.set('n', '<leader>ph', require('gitsigns').preview_hunk, { buffer = bufnr, desc = '[P]review [H]unk' })
|
2023-05-16 16:38:56 -03:00
|
|
|
end,
|
2023-02-17 18:31:57 -03:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2022-11-18 23:04:04 -03:00
|
|
|
|
2023-06-04 13:10:59 -03:00
|
|
|
{
|
|
|
|
-- Set lualine as statusline
|
|
|
|
'nvim-lualine/lualine.nvim',
|
|
|
|
-- See `:help lualine.txt`
|
|
|
|
opts = {
|
|
|
|
options = {
|
|
|
|
icons_enabled = false,
|
2023-08-01 20:43:02 -03:00
|
|
|
theme = 'ayu_dark',
|
2023-06-04 13:10:59 -03:00
|
|
|
component_separators = '|',
|
|
|
|
section_separators = '',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2022-11-18 23:04:04 -03:00
|
|
|
|
2023-05-08 07:02:37 -03:00
|
|
|
{
|
|
|
|
-- Add indentation guides even on blank lines
|
2023-02-17 18:31:57 -03:00
|
|
|
'lukas-reineke/indent-blankline.nvim',
|
|
|
|
-- Enable `lukas-reineke/indent-blankline.nvim`
|
|
|
|
-- See `:help indent_blankline.txt`
|
|
|
|
opts = {
|
|
|
|
char = '┊',
|
|
|
|
show_trailing_blankline_indent = false,
|
|
|
|
},
|
|
|
|
},
|
2022-11-18 23:04:04 -03:00
|
|
|
|
2023-02-17 18:31:57 -03:00
|
|
|
-- "gc" to comment visual regions/lines
|
2023-08-01 15:38:01 -03:00
|
|
|
{ 'numToStr/Comment.nvim', opts = {} },
|
2022-08-24 05:48:08 -03:00
|
|
|
|
|
|
|
-- Fuzzy Finder (files, lsp, etc)
|
2023-05-16 16:38:56 -03:00
|
|
|
{ 'nvim-telescope/telescope.nvim', branch = '0.1.x', dependencies = { 'nvim-lua/plenary.nvim' } },
|
2023-02-17 18:31:57 -03:00
|
|
|
|
|
|
|
{
|
|
|
|
'nvim-telescope/telescope-fzf-native.nvim',
|
|
|
|
build = 'make',
|
|
|
|
cond = function()
|
|
|
|
return vim.fn.executable 'make' == 1
|
|
|
|
end,
|
|
|
|
},
|
2022-06-24 00:35:53 -03:00
|
|
|
|
2023-05-08 07:02:37 -03:00
|
|
|
{
|
|
|
|
-- Highlight, edit, and navigate code
|
2023-02-17 18:31:57 -03:00
|
|
|
'nvim-treesitter/nvim-treesitter',
|
|
|
|
dependencies = {
|
|
|
|
'nvim-treesitter/nvim-treesitter-textobjects',
|
|
|
|
},
|
2023-05-16 16:38:56 -03:00
|
|
|
build = ':TSUpdate',
|
2023-02-17 18:31:57 -03:00
|
|
|
},
|
2022-11-21 09:47:24 -03:00
|
|
|
|
2023-08-01 20:43:02 -03:00
|
|
|
require 'kickstart.plugins.autoformat',
|
|
|
|
require 'kickstart.plugins.debug',
|
2022-06-24 00:35:53 -03:00
|
|
|
|
2023-08-01 20:43:02 -03:00
|
|
|
{ import = 'custom.plugins' },
|
2023-02-17 18:31:57 -03:00
|
|
|
}, {})
|
2022-06-24 00:35:53 -03:00
|
|
|
|
|
|
|
-- Set highlight on search
|
|
|
|
vim.o.hlsearch = false
|
|
|
|
|
|
|
|
-- Make line numbers default
|
|
|
|
vim.wo.number = true
|
|
|
|
|
|
|
|
-- Enable mouse mode
|
|
|
|
vim.o.mouse = 'a'
|
|
|
|
|
2023-02-17 18:37:36 -03:00
|
|
|
-- Sync clipboard between OS and Neovim.
|
|
|
|
-- See `:help 'clipboard'`
|
|
|
|
vim.o.clipboard = 'unnamedplus'
|
|
|
|
|
2022-06-24 00:35:53 -03:00
|
|
|
-- Enable break indent
|
|
|
|
vim.o.breakindent = true
|
|
|
|
|
|
|
|
-- Save undo history
|
|
|
|
vim.o.undofile = true
|
|
|
|
|
2023-06-18 11:20:34 -03:00
|
|
|
-- Case-insensitive searching UNLESS \C or capital in search
|
2022-06-24 00:35:53 -03:00
|
|
|
vim.o.ignorecase = true
|
|
|
|
vim.o.smartcase = true
|
|
|
|
|
2023-02-17 18:31:57 -03:00
|
|
|
-- Keep signcolumn on by default
|
2022-06-24 00:35:53 -03:00
|
|
|
vim.wo.signcolumn = 'yes'
|
|
|
|
|
2023-02-17 18:31:57 -03:00
|
|
|
-- Decrease update time
|
|
|
|
vim.o.updatetime = 250
|
|
|
|
vim.o.timeoutlen = 300
|
2022-06-24 00:35:53 -03:00
|
|
|
|
|
|
|
-- Set completeopt to have a better completion experience
|
|
|
|
vim.o.completeopt = 'menuone,noselect'
|
|
|
|
|
2023-02-17 18:31:57 -03:00
|
|
|
-- NOTE: You should make sure your terminal supports this
|
|
|
|
vim.o.termguicolors = true
|
|
|
|
|
2022-06-24 00:35:53 -03:00
|
|
|
-- Keymaps for better default experience
|
|
|
|
vim.keymap.set({ 'n', 'v' }, '<Space>', '<Nop>', { silent = true })
|
|
|
|
|
|
|
|
-- Remap for dealing with word wrap
|
|
|
|
vim.keymap.set('n', 'k', "v:count == 0 ? 'gk' : 'k'", { expr = true, silent = true })
|
|
|
|
vim.keymap.set('n', 'j', "v:count == 0 ? 'gj' : 'j'", { expr = true, silent = true })
|
|
|
|
|
|
|
|
-- [[ Highlight on yank ]]
|
|
|
|
local highlight_group = vim.api.nvim_create_augroup('YankHighlight', { clear = true })
|
|
|
|
vim.api.nvim_create_autocmd('TextYankPost', {
|
|
|
|
callback = function()
|
|
|
|
vim.highlight.on_yank()
|
|
|
|
end,
|
|
|
|
group = highlight_group,
|
|
|
|
pattern = '*',
|
|
|
|
})
|
|
|
|
|
|
|
|
-- [[ Configure Telescope ]]
|
|
|
|
require('telescope').setup {
|
|
|
|
defaults = {
|
|
|
|
mappings = {
|
|
|
|
i = {
|
|
|
|
['<C-u>'] = false,
|
|
|
|
['<C-d>'] = false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
-- Enable telescope fzf native, if installed
|
|
|
|
pcall(require('telescope').load_extension, 'fzf')
|
|
|
|
|
|
|
|
-- See `:help telescope.builtin`
|
|
|
|
vim.keymap.set('n', '<leader>?', require('telescope.builtin').oldfiles, { desc = '[?] Find recently opened files' })
|
|
|
|
vim.keymap.set('n', '<leader><space>', require('telescope.builtin').buffers, { desc = '[ ] Find existing buffers' })
|
|
|
|
vim.keymap.set('n', '<leader>/', function()
|
|
|
|
-- You can pass additional configuration to telescope to change theme, layout, etc.
|
|
|
|
require('telescope.builtin').current_buffer_fuzzy_find(require('telescope.themes').get_dropdown {
|
2023-08-01 21:11:04 -03:00
|
|
|
winblend = 0,
|
2022-06-24 00:35:53 -03:00
|
|
|
previewer = false,
|
|
|
|
})
|
2023-02-17 18:31:57 -03:00
|
|
|
end, { desc = '[/] Fuzzily search in current buffer' })
|
2022-06-24 00:35:53 -03:00
|
|
|
|
2023-04-24 13:57:47 -03:00
|
|
|
vim.keymap.set('n', '<leader>gf', require('telescope.builtin').git_files, { desc = 'Search [G]it [F]iles' })
|
2022-06-24 00:35:53 -03:00
|
|
|
vim.keymap.set('n', '<leader>sf', require('telescope.builtin').find_files, { desc = '[S]earch [F]iles' })
|
|
|
|
vim.keymap.set('n', '<leader>sh', require('telescope.builtin').help_tags, { desc = '[S]earch [H]elp' })
|
|
|
|
vim.keymap.set('n', '<leader>sw', require('telescope.builtin').grep_string, { desc = '[S]earch current [W]ord' })
|
|
|
|
vim.keymap.set('n', '<leader>sg', require('telescope.builtin').live_grep, { desc = '[S]earch by [G]rep' })
|
|
|
|
vim.keymap.set('n', '<leader>sd', require('telescope.builtin').diagnostics, { desc = '[S]earch [D]iagnostics' })
|
|
|
|
|
|
|
|
-- [[ Configure Treesitter ]]
|
|
|
|
-- See `:help nvim-treesitter`
|
|
|
|
require('nvim-treesitter.configs').setup {
|
|
|
|
-- Add languages to be installed here that you want installed for treesitter
|
2023-08-01 21:11:04 -03:00
|
|
|
ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'typescript', 'vimdoc', 'vim', 'java' },
|
2023-02-17 18:31:57 -03:00
|
|
|
|
|
|
|
-- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!)
|
|
|
|
auto_install = false,
|
2022-06-24 00:35:53 -03:00
|
|
|
|
|
|
|
highlight = { enable = true },
|
2023-06-07 21:41:30 -03:00
|
|
|
indent = { enable = true },
|
2022-06-24 00:35:53 -03:00
|
|
|
incremental_selection = {
|
|
|
|
enable = true,
|
|
|
|
keymaps = {
|
|
|
|
init_selection = '<c-space>',
|
|
|
|
node_incremental = '<c-space>',
|
|
|
|
scope_incremental = '<c-s>',
|
2023-02-17 18:31:57 -03:00
|
|
|
node_decremental = '<M-space>',
|
2022-06-24 00:35:53 -03:00
|
|
|
},
|
|
|
|
},
|
|
|
|
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
|
2022-11-25 15:18:01 -03:00
|
|
|
['aa'] = '@parameter.outer',
|
|
|
|
['ia'] = '@parameter.inner',
|
2022-06-24 00:35:53 -03:00
|
|
|
['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',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
-- Diagnostic keymaps
|
2023-05-16 16:38:56 -03:00
|
|
|
vim.keymap.set('n', '[d', vim.diagnostic.goto_prev, { desc = 'Go to previous diagnostic message' })
|
|
|
|
vim.keymap.set('n', ']d', vim.diagnostic.goto_next, { desc = 'Go to next diagnostic message' })
|
|
|
|
vim.keymap.set('n', '<leader>e', vim.diagnostic.open_float, { desc = 'Open floating diagnostic message' })
|
|
|
|
vim.keymap.set('n', '<leader>q', vim.diagnostic.setloclist, { desc = 'Open diagnostics list' })
|
2022-06-24 00:35:53 -03:00
|
|
|
|
2023-05-22 03:46:09 -03:00
|
|
|
-- [[ Configure LSP ]]
|
2022-06-24 00:35:53 -03:00
|
|
|
-- This function gets run when an LSP connects to a particular buffer.
|
|
|
|
local on_attach = function(_, bufnr)
|
|
|
|
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>rn', vim.lsp.buf.rename, '[R]e[n]ame')
|
2022-06-24 13:19:15 -03:00
|
|
|
nmap('<leader>ca', vim.lsp.buf.code_action, '[C]ode [A]ction')
|
2022-06-24 00:35:53 -03:00
|
|
|
|
|
|
|
nmap('gd', vim.lsp.buf.definition, '[G]oto [D]efinition')
|
2022-11-18 23:04:04 -03:00
|
|
|
nmap('gr', require('telescope.builtin').lsp_references, '[G]oto [R]eferences')
|
2022-12-13 13:21:34 -03:00
|
|
|
nmap('gI', vim.lsp.buf.implementation, '[G]oto [I]mplementation')
|
|
|
|
nmap('<leader>D', vim.lsp.buf.type_definition, 'Type [D]efinition')
|
2022-06-24 00:35:53 -03:00
|
|
|
nmap('<leader>ds', require('telescope.builtin').lsp_document_symbols, '[D]ocument [S]ymbols')
|
|
|
|
nmap('<leader>ws', require('telescope.builtin').lsp_dynamic_workspace_symbols, '[W]orkspace [S]ymbols')
|
|
|
|
|
|
|
|
-- See `:help K` for why this keymap
|
|
|
|
nmap('K', vim.lsp.buf.hover, 'Hover Documentation')
|
2023-08-01 21:11:04 -03:00
|
|
|
nmap('<C-S-k>', vim.lsp.buf.signature_help, 'Signature Documentation')
|
2022-06-24 00:35:53 -03:00
|
|
|
|
|
|
|
-- Lesser used LSP functionality
|
|
|
|
nmap('gD', vim.lsp.buf.declaration, '[G]oto [D]eclaration')
|
|
|
|
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
|
2022-08-24 05:17:50 -03:00
|
|
|
vim.api.nvim_buf_create_user_command(bufnr, 'Format', function(_)
|
2022-12-21 00:12:39 -03:00
|
|
|
vim.lsp.buf.format()
|
2022-08-24 05:17:50 -03:00
|
|
|
end, { desc = 'Format current buffer with LSP' })
|
2022-06-24 00:35:53 -03:00
|
|
|
end
|
|
|
|
|
2022-12-21 00:12:39 -03:00
|
|
|
local servers = {
|
|
|
|
-- clangd = {},
|
|
|
|
-- gopls = {},
|
|
|
|
-- pyright = {},
|
|
|
|
-- rust_analyzer = {},
|
|
|
|
-- tsserver = {},
|
2023-08-13 20:33:25 -03:00
|
|
|
hls = {},
|
2023-08-01 20:43:02 -03:00
|
|
|
html = { provideFormatter = false },
|
2022-12-21 00:12:39 -03:00
|
|
|
|
2023-02-17 18:31:57 -03:00
|
|
|
lua_ls = {
|
2022-12-21 00:12:39 -03:00
|
|
|
Lua = {
|
|
|
|
workspace = { checkThirdParty = false },
|
|
|
|
telemetry = { enable = false },
|
|
|
|
},
|
|
|
|
},
|
2022-06-24 00:35:53 -03:00
|
|
|
}
|
|
|
|
|
2022-12-21 00:12:39 -03:00
|
|
|
-- Setup neovim lua configuration
|
|
|
|
require('neodev').setup()
|
2023-02-17 18:31:57 -03:00
|
|
|
|
2022-12-21 00:12:39 -03:00
|
|
|
-- nvim-cmp supports additional completion capabilities, so broadcast that to servers
|
2022-11-18 23:04:04 -03:00
|
|
|
local capabilities = vim.lsp.protocol.make_client_capabilities()
|
|
|
|
capabilities = require('cmp_nvim_lsp').default_capabilities(capabilities)
|
2023-08-01 20:43:02 -03:00
|
|
|
capabilities.textDocument.completion.completionItem.snippetSupport = true
|
2022-11-18 23:04:04 -03:00
|
|
|
|
2022-12-21 00:12:39 -03:00
|
|
|
-- Ensure the servers above are installed
|
|
|
|
local mason_lspconfig = require 'mason-lspconfig'
|
2022-11-18 23:04:04 -03:00
|
|
|
|
2022-12-21 00:12:39 -03:00
|
|
|
mason_lspconfig.setup {
|
|
|
|
ensure_installed = vim.tbl_keys(servers),
|
|
|
|
}
|
|
|
|
|
|
|
|
mason_lspconfig.setup_handlers {
|
|
|
|
function(server_name)
|
|
|
|
require('lspconfig')[server_name].setup {
|
|
|
|
capabilities = capabilities,
|
|
|
|
on_attach = on_attach,
|
|
|
|
settings = servers[server_name],
|
2023-07-25 12:06:04 -03:00
|
|
|
filetypes = (servers[server_name] or {}).filetypes,
|
2022-12-21 00:12:39 -03:00
|
|
|
}
|
2023-07-24 15:41:14 -03:00
|
|
|
end
|
2022-06-24 00:35:53 -03:00
|
|
|
}
|
2023-08-01 21:11:04 -03:00
|
|
|
-- this is for my personal config, i cant bother seeing every TJ's default and changing it to my own
|
2023-08-01 20:43:02 -03:00
|
|
|
require("jabuxas")
|
2023-08-01 15:38:01 -03:00
|
|
|
|
2023-08-04 18:41:04 -03:00
|
|
|
vim.opt.tabstop = 2
|
|
|
|
vim.opt.softtabstop = 2
|
|
|
|
vim.opt.shiftwidth = 2
|
|
|
|
vim.opt.expandtab = true
|
|
|
|
|
2022-06-24 00:35:53 -03:00
|
|
|
-- The line beneath this is called `modeline`. See `:help modeline`
|
|
|
|
-- vim: ts=2 sts=2 sw=2 et
|