---------------------------------------------------------------------- -- -- NeoVim Configuration -- ---------------------------------------------------------------------- -- Make searching case insensitive by default. Case sensitivity can be -- enabled per search by including '\C' anywhere in the search term. vim.opt.ignorecase = true -- Enable line numbers. vim.opt.number = true -- Splits are automatically made the same size. vim.opt.equalalways = true -- Number of visual spaces a tab character counts for. vim.opt.tabstop = 4 -- Number of spaces to insert when hitting tab. vim.opt.softtabstop = 4 -- Insert spaces when pressing tab. vim.opt.expandtab = true -- Number of spaces to indent with '>>' and '<<' vim.opt.shiftwidth = 4 -- Display invisible characters (tabs, trailing whitespace, etc.). vim.opt.list = true -- ---------------------------------- -- Filetype configurations -- ---------------------------------- vim.cmd [[ filetype plugin on ]] local lua_augroup = vim.api.nvim_create_augroup('filetype_lua', {clear = true}) vim.api.nvim_create_autocmd('FileType', { pattern = 'lua', group = lua_augroup, command = 'setlocal tabstop=2|setlocal shiftwidth=2|setlocal softtabstop=2' }) local c_augroup = vim.api.nvim_create_augroup('filetype_c', {clear = true}) vim.api.nvim_create_autocmd('FileType', { pattern = 'c', group = c_augroup, command = 'setlocal noexpandtab|setlocal tabstop=4' }) local go_augroup = vim.api.nvim_create_augroup('filetype_go', {clear = true}) vim.api.nvim_create_autocmd('FileType', { pattern = 'go', group = go_augroup, command = 'setlocal noexpandtab|setlocal tabstop=4' }) local markdown_augroup = vim.api.nvim_create_augroup('filetype_markdown', {clear = true}) vim.api.nvim_create_autocmd('FileType', { pattern = 'markdown', group = markdown_augroup, command = 'setlocal tabstop=2|setlocal shiftwidth=2|setlocal softtabstop=2' }) local txt_augroup = vim.api.nvim_create_augroup('filetype_txt', {clear = true}) vim.api.nvim_create_autocmd('FileType', { pattern = 'text', group = txt_augroup, command = 'setlocal tabstop=3|setlocal shiftwidth=3|setlocal softtabstop=3|setlocal tw=72' }) -- ---------------------------------- -- Plugins -- ---------------------------------- local Plug = vim.fn["plug#"] vim.call("plug#begin", "~/.config/nvim/plugged") Plug('numToStr/Comment.nvim') Plug('junegunn/fzf') Plug('neovim/nvim-lspconfig') Plug('arcticicestudio/nord-vim') vim.call("plug#end") -- Comment -- ------------------ require("Comment").setup() -- FZF -- ------------------ vim.cmd("nnoremap :FZF") -- Pyright -- ------------------ require "lspconfig".pyright.setup{} -- Mappings. -- See `:help vim.diagnostic.*` for documentation on any of the below functions local opts = { noremap=true, silent=true } vim.api.nvim_set_keymap('n', 'e', 'lua vim.diagnostic.open_float()', opts) vim.api.nvim_set_keymap('n', '[d', 'lua vim.diagnostic.goto_prev()', opts) vim.api.nvim_set_keymap('n', ']d', 'lua vim.diagnostic.goto_next()', opts) vim.api.nvim_set_keymap('n', 'q', 'lua vim.diagnostic.setloclist()', opts) vim.api.nvim_set_keymap('n', 'f', 'lua vim.lsp.buf.formatting()', opts) -- Use an on_attach function to only map the following keys -- after the language server attaches to the current buffer local on_attach = function(client, bufnr) -- Enable completion triggered by vim.api.nvim_buf_set_option(bufnr, 'omnifunc', 'v:lua.vim.lsp.omnifunc') -- Mappings. -- See `:help vim.lsp.*` for documentation on any of the below functions vim.api.nvim_buf_set_keymap(bufnr, 'n', 'gD', 'lua vim.lsp.buf.declaration()', opts) vim.api.nvim_buf_set_keymap(bufnr, 'n', 'gd', 'lua vim.lsp.buf.definition()', opts) vim.api.nvim_buf_set_keymap(bufnr, 'n', 'K', 'lua vim.lsp.buf.hover()', opts) vim.api.nvim_buf_set_keymap(bufnr, 'n', 'gi', 'lua vim.lsp.buf.implementation()', opts) vim.api.nvim_buf_set_keymap(bufnr, 'n', '', 'lua vim.lsp.buf.signature_help()', opts) vim.api.nvim_buf_set_keymap(bufnr, 'n', 'wa', 'lua vim.lsp.buf.add_workspace_folder()', opts) vim.api.nvim_buf_set_keymap(bufnr, 'n', 'wr', 'lua vim.lsp.buf.remove_workspace_folder()', opts) vim.api.nvim_buf_set_keymap(bufnr, 'n', 'wl', 'lua print(vim.inspect(vim.lsp.buf.list_workspace_folders()))', opts) vim.api.nvim_buf_set_keymap(bufnr, 'n', 'D', 'lua vim.lsp.buf.type_definition()', opts) vim.api.nvim_buf_set_keymap(bufnr, 'n', 'rn', 'lua vim.lsp.buf.rename()', opts) vim.api.nvim_buf_set_keymap(bufnr, 'n', 'ca', 'lua vim.lsp.buf.code_action()', opts) vim.api.nvim_buf_set_keymap(bufnr, 'n', 'gr', 'lua vim.lsp.buf.references()', opts) end -- Use a loop to conveniently call 'setup' on multiple servers and -- map buffer local keybindings when the language server attaches local servers = {'pyright', 'gopls'} for _, lsp in pairs(servers) do require('lspconfig')[lsp].setup { on_attach = on_attach, flags = { -- This will be the default in neovim 0.7+ debounce_text_changes = 150, } } end