vim.g.have_nerd_font = false vim.g.mapleader = ' ' vim.g.maplocalleader = ',' vim.g.netrw_banner = 0 vim.g.netrw_bufsettings = 'noma nomod nu nobl nowrap ro' vim.g.netrw_list_hide = [[^\(\.\|\.\.\)/\?$,^__pycache__/\?,.*\.\(a\|o\|so\|pyc\)$]] -- NOTE: :help option-list vim.opt.backup = false vim.opt.breakindent = true vim.opt.conceallevel = 2 vim.opt.cursorline = true vim.opt.expandtab = false vim.opt.exrc = true vim.opt.grepprg = 'rg --vimgrep' vim.opt.hlsearch = true vim.opt.ignorecase = true vim.opt.inccommand = 'split' vim.opt.list = false vim.opt.listchars = { tab = '» ', trail = '․', nbsp = '␣' } vim.opt.matchpairs:append('<:>') vim.opt.matchpairs:append('‘:’') vim.opt.matchpairs:append('“:”') vim.opt.matchpairs:append('»:«') vim.opt.matchpairs:append('›:‹') vim.opt.mouse = 'a' vim.opt.number = true vim.opt.relativenumber = true vim.opt.scrolloff = 8 vim.opt.secure = true vim.opt.shiftwidth = 4 vim.opt.showmode = false vim.opt.signcolumn = 'no' vim.opt.smartcase = true vim.opt.smartindent = true vim.opt.softtabstop = 4 vim.opt.splitbelow = true vim.opt.splitright = true vim.opt.swapfile = false vim.opt.tabstop = 4 vim.opt.undodir = os.getenv('XDG_STATE_HOME') .. '/nvim/undo' vim.opt.undofile = true vim.keymap.set('n', '', '', { desc = 'Move focus to the lower window' }) vim.keymap.set('n', '', '', { desc = 'Move focus to the upper window' }) vim.keymap.set('n', '', ':WinMovePrev', { desc = 'Move focus to the left window', silent = true }) vim.keymap.set('n', '', ':WinMoveNext', { desc = 'Move focus to the right window', silent = true }) vim.keymap.set('n', 'h', function() vim.cmd 'split' end, { desc = 'Open a [H]orizontal split' }) vim.keymap.set('n', 'v', function() vim.cmd 'vsplit' end, { desc = 'Open a [V]ertical split' }) vim.keymap.set('n', 'M', ':w! | make', { desc = 'Run the configured compiler', silent = true }) vim.keymap.set('x', '', ":m '>+1gv=gv", { desc = 'Move a selection down a line', silent = true }) vim.keymap.set('x', '', ":m '<-2gv=gv", { desc = 'Move a selection up a line', silent = true }) vim.keymap.set({ 'n', 'o', 'x' }, '€', '$', { desc = 'Go to end of the line' }) vim.keymap.set('n', '', ':nohlsearch', { desc = 'Disable highlighting of currently highlighted search matches', silent = true }) vim.keymap.set('n', 't', function() vim.cmd.normal('"zx"zph') end, { desc = '[T]ranspose the current and next characters' }) vim.keymap.set('n', 'T', function() vim.cmd.normal('"zX"zp') end, { desc = '[T]ranspose the current and previous characters' }) vim.keymap.set('n', '-', ':Ex', { desc = 'Open Netrw', silent = true }) vim.keymap.set('n', 'gJ', function() vim.cmd [[ let save = winsaveview() normal! gJ if matchstr(getline('.'), '\%' . col('.') . 'c.') =~ '\s' normal! "_dw endif call winrestview(save) ]] end, { desc = '[J]oin lines without whitespace' }) vim.keymap.set('n', 's', ':VScratch', { desc = 'Open the scratch buffer in a vertical split' }) vim.keymap.set('n', 'S', ':Scratch', { desc = 'Open the scratch buffer in a horizontal split' }) if vim.loop.os_uname().sysname ~= 'Darwin' then vim.keymap.set({'n', 'x'}, '', 'V', { desc = 'Enter visual-line mode' }) vim.keymap.set({'n', 'x'}, 'V', '', { desc = 'Enter visual-block mode' }) end -- Don’t move the cursor with various commands vim.keymap.set('n', 'J', 'mzJ`z') vim.keymap.set('n', '', 'zz') vim.keymap.set('n', '', 'zz') vim.keymap.set('n', 'n', 'nzzzv') vim.keymap.set('n', 'N', 'Nzzzv') vim.api.nvim_create_autocmd('BufEnter', { desc = 'Disable auto-commenting', group = vim.api.nvim_create_augroup('mango-no-autocomment', { clear = true }), callback = function() vim.opt.formatoptions:remove({ 'c', 'r', 'o' }) end, }) vim.api.nvim_create_autocmd('TextYankPost', { desc = 'Momentarily highlight yanked text', group = vim.api.nvim_create_augroup('mango-highlight-yank', { clear = true }), callback = function() vim.highlight.on_yank() end, }) vim.api.nvim_create_autocmd('VimEnter', { desc = 'Remove the Vim background color', group = vim.api.nvim_create_augroup('mango-highlight-config', { clear = true }), callback = function() vim.cmd [[ highlight Comment cterm=NONE gui=NONE highlight CursorColumn guibg=#1D2635 highlight CursorLine guibg=#1D2635 highlight EndOfBuffer guibg=NONE highlight Normal guibg=NONE highlight NormalNC guibg=NONE highlight StatusLine guibg=#19212E highlight TabLineFill guibg=#19212E highlight TabLine guibg=#131A25 highlight TelescopeBorder guibg=NONE highlight TelescopeNormal guibg=NONE highlight TelescopePromptBorder guibg=NONE highlight TelescopePromptTitle guibg=NONE ]] end, }) -- Weird way to make buffer auto-reverting work? vim.cmd [[ if !exists('g:CheckUpdateStarted') let g:CheckUpdatedStarted = 1 call timer_start(1000, 'CheckUpdate', {'repeat': -1}) endif function! CheckUpdate(_) silent! checktime endfunction ]] -- Bootstrap Paq local paqpath = vim.fn.stdpath('data') .. '/site/pack/paqs/start/paq-nvim' if not vim.uv.fs_stat(paqpath) then vim.fn.system({ 'git', 'clone', '--depth=1', 'https://github.com/savq/paq-nvim.git', paqpath }) end require 'paq' { 'folke/todo-comments.nvim', 'folke/tokyonight.nvim', 'hrsh7th/cmp-nvim-lsp', 'hrsh7th/cmp-path', 'hrsh7th/nvim-cmp', 'https://git.sr.ht/~mango/tree-sitter-gsp', 'kylechui/nvim-surround', 'L3MON4D3/LuaSnip', 'luckasRanarison/tree-sitter-hypr', 'mattn/emmet-vim', 'neovim/nvim-lspconfig', 'ngalaiko/tree-sitter-go-template', 'nvim-lua/plenary.nvim', 'nvim-telescope/telescope.nvim', 'nvim-telescope/telescope-ui-select.nvim', { 'nvim-treesitter/nvim-treesitter', build = ':TSUpdate' }, 'nvim-treesitter/nvim-treesitter-textobjects', 'saadparwaiz1/cmp_luasnip', 'savq/paq-nvim', 'wellle/targets.vim', } -- emmet-vim vim.g.user_emmet_install = false -- tokyonight.nvim vim.cmd.colorscheme 'tokyonight-night' -- telescope.nvim local telescope = require 'telescope' local tsactions = require 'telescope.actions' local tsbuiltin = require 'telescope.builtin' local tsthemes = require 'telescope.themes' telescope.setup { defaults = { scroll_strategy = 'limit', path_display = { 'filename_first' }, get_status_text = function(_) return '' end, mappings = { i = { [''] = { tsactions.close, type = 'action', opts = { nowait = true, silent = true }, }, [''] = { tsactions.move_selection_next, type = 'action', opts = { nowait = true, silent = true }, }, [''] = { tsactions.move_selection_previous, type = 'action', opts = { nowait = true, silent = true }, }, }, }, }, extensions = { ['ui-select'] = { tsthemes.get_dropdown() }, } } pcall(telescope.load_exetension, 'fzf') pcall(telescope.load_exetension, 'ui-select') vim.keymap.set('n', 'ff', tsbuiltin.find_files, { desc = '[F]ind [F]iles' }) vim.keymap.set('n', 'fh', tsbuiltin.help_tags, { desc = '[F]ind [H]elp' }) vim.keymap.set('n', 'fg', tsbuiltin.live_grep, { desc = '[F]ind [G]rep' }) vim.keymap.set('n', '/', function() tsbuiltin.current_buffer_fuzzy_find(tsthemes.get_dropdown { winblend = 10, previewer = false, }) end, { desc = 'Fuzzily search in current buffer' }) -- todo-comments.nvim require('todo-comments').setup { signs = false, keywords = { TODO = { color = 'info' }, NOTE = { color = 'hint' }, }, highlight = { before = '', keyword = 'fg', after = '', }, } -- nvim-treesitter local treeconfs = require('nvim-treesitter.parsers').get_parser_configs() treeconfs.gsp = { install_info = { url = 'https://git.sr.ht/~mango/tree-sitter-gsp', files = { 'src/parser.c' }, }, filetype = 'gsp', } treeconfs.gotmpl = { install_info = { url = 'https://github.com/ngalaiko/tree-sitter-go-template', files = { 'src/parser.c' }, }, filetype = 'gotmpl', } require('nvim-treesitter.install').prefer_git = true require('nvim-treesitter.configs').setup { auto_install = true, sync_install = true, highlight = { enable = true, additional_vim_regex_highlighting = false, }, incremental_selection = { enable = true, keymaps = { init_selection = '', node_incremental = '', node_decremental = '', }, }, textobjects = { select = { enable = true, lookahead = true, keymaps = { ['ab'] = '@block.outer', ['ib'] = '@block.inner', ['ac'] = '@comment.outer', ['ic'] = '@comment.inner', ['af'] = '@function.outer', ['if'] = '@function.inner', ['an'] = '@node.outer', ['in'] = '@node.inner', ['at'] = '@text.outer', ['it'] = '@text.outer', }, }, move = { enable = true, set_jumps = true, goto_next_start = { [']c'] = '@comment.outer', [']f'] = '@function.outer', [']b'] = '@block.outer', [']n'] = '@node.outer', [']t'] = '@text.outer', }, goto_next_end = { [']C'] = '@comment.outer', [']F'] = '@function.outer', [']B'] = '@block.outer', [']N'] = '@node.outer', [']T'] = '@text.outer', }, goto_previous_start = { ['[c'] = '@comment.outer', ['[f'] = '@function.outer', ['[b'] = '@block.outer', ['[n'] = '@node.outer', ['[t'] = '@text.outer', }, goto_previous_end = { ['[C'] = '@comment.outer', ['[F'] = '@function.outer', ['[B'] = '@block.outer', ['[N'] = '@node.outer', ['[T'] = '@text.outer', }, }, }, } -- nvim-surround local surround_conf = require('nvim-surround.config') require('nvim-surround').setup { surrounds = { ['’'] = { add = { '‘', '’' }, find = '‘[^‘’]*’', delete = '^(‘)().-(’)()$', }, ['‘'] = { add = { '‘ ', ' ’' }, find = '‘[^‘’]*’', delete = '^(‘ *)().-( *’)()$', }, ['”'] = { add = { '“', '”' }, find = '“[^“”]*”', delete = '^(“)().-(”)()$', }, ['“'] = { add = { '“ ', ' ”' }, find = '“[^“”]*”', delete = '^(“ *)().-( *”)()$', }, ['l'] = { add = function() local result = surround_conf.get_input('Array name: ') if result then return { { result .. '[' }, { ']' } } end end, find = function() return surround_conf.get_selection({ pattern = '[^=%s%(%){}]+%b[]' }) end, delete = '^(.-%[)().-(%])()$', change = { target = '^.-([%w_]+)()%[.-%]()()$', replacement = function() local result = surround_conf.get_input('Array name: ') if result then return { { result }, { '' } } end end, }, }, } } -- nvim-lspconfig local lsp = require 'lspconfig' local caps = require('cmp_nvim_lsp').default_capabilities() lsp.clangd.setup { cmd = { 'clangd', '-header-insertion=never' }, capabilities = caps, } lsp.gopls.setup { capabilities = caps, } lsp.rust_analyzer.setup { capabilities = caps, } lsp.templ.setup { capabilities = caps, } lsp.ts_ls.setup { capabilities = caps, } lsp.lua_ls.setup { settings = { Lua = { runtime = { version = 'LuaJIT', }, diagnostics = { globals = { 'vim', 'require', }, }, workspace = { library = vim.api.nvim_get_runtime_file('', true), }, telemetry = { enable = false, }, }, }, capabilities = caps, } vim.api.nvim_create_autocmd('LspAttach', { group = vim.api.nvim_create_augroup('mango-lsp-config', { clear = true }), callback = function(ev) local function remap(mode, map, fn) vim.keymap.set(mode, map, fn, { buffer = ev.buf }) end vim.diagnostic.disable() vim.bo[ev.buf].omnifunc = 'v:lua.vim.lsp.omnifunc' vim.keymap.set('n', 'gK', vim.lsp.buf.hover, { buffer = ev.buf, desc = 'View symbol hover information' }) vim.keymap.set('n', 'gd', vim.lsp.buf.definition, { buffer = ev.buf, desc = 'Goto [D]efinition' }) vim.keymap.set('n', 'gi', vim.lsp.buf.implementation, { buffer = ev.buf, desc = 'Goto [I]mplementation' }) vim.keymap.set('n', 'gr', vim.lsp.buf.rename, { buffer = ev.buf, desc = '[R]ename symbol' }) vim.keymap.set('n', 'gt', vim.lsp.buf.type_definition, { buffer = ev.buf, desc = 'Goto [T]ype definition' }) end, }) -- nvim-cmp & luasnip local cmp = require 'cmp' local luasnip = require 'luasnip' luasnip.config.setup { history = true, updateevents = 'TextChanged,TextChangedI', } require 'snippets' cmp.setup { snippet = { expand = function(args) luasnip.lsp_expand(args.body) end, }, completion = { completeopt = 'menu,menuone,noinsert' }, mapping = cmp.mapping.preset.insert { [''] = cmp.mapping.confirm { select = true }, [''] = cmp.mapping.complete(), [''] = cmp.mapping.scroll_docs(-1), [''] = cmp.mapping.scroll_docs(1), [''] = cmp.mapping.abort(), [''] = cmp.mapping.select_next_item({ behaviour = cmp.SelectBehavior.Select, }), [''] = cmp.mapping.select_prev_item({ behaviour = cmp.SelectBehavior.Select, }), [''] = cmp.mapping(function() if luasnip.expand_or_locally_jumpable() then luasnip.expand_or_jump() end end, {'i', 's'}), [''] = cmp.mapping(function() if luasnip.expand_or_locally_jumpable(-1) then luasnip.expand_or_jump(-1) end end, {'i', 's'}), }, sources = { { name = 'nvim_lsp' }, { name = 'luasnip' }, { name = 'path' }, }, experimental = { ghost_text = true, }, } -- Pipe require('pipe')