local lsp = require('lspconfig') local util = lsp.util local lspcap = require('cmp_nvim_lsp') .default_capabilities(vim.lsp.protocol.make_client_capabilities()) local lspatt = function(_, bufnr) vim.api.nvim_buf_set_option(bufnr, 'omnifunc', 'v:lua.vim.lsp.omnifunc') end -- color scheme setup vim.g.catppuccin_flavour = 'mocha' require('catppuccin').setup() vim.cmd [[colorscheme catppuccin]] -- load snippets require('luasnip.loaders.from_snipmate').lazy_load({ paths = "~/.config/nvim/snippets" }) -- replace built in selector with telescope require('telescope').setup { extensions = { ["ui-select"] = { require("telescope.themes").get_dropdown { -- even more opts } } } } require('telescope').load_extension('ui-select') -- autocomplete config local cmp = require 'cmp' cmp.setup { snippet = { expand = function(args) require'luasnip'.lsp_expand(args.body) end, }, mapping = { [''] = cmp.mapping.select_next_item(), [''] = cmp.mapping.select_prev_item(), [''] = cmp.mapping.confirm({ behavior = cmp.ConfirmBehavior.Replace, select = false, }) }, preselect = cmp.PreselectMode.None, confirmation = { get_commit_characters = function(_) return {} end }, sources = { { name = 'luasnip' }, { name = 'nvim_lsp' }, { name = 'buffer' }, { name = 'path' }, }, } -- gitsigns require('gitsigns').setup() -- lsp configs lsp.openscad_ls.setup { capabilities = lspcap, on_attach = lspatt, } local pid = vim.fn.getpid() lsp.omnisharp.setup { capabilities = lspcap, on_attach = lspatt, root_dir = function(file, _) if file:sub(-#".csx") == ".csx" then return util.path.dirname(file) end return util.root_pattern("*.sln")(file) or util.root_pattern("*.csproj")(file) end, cmd = { "/home/rudism/.local/share/omnisharp/OmniSharp", "--languageserver" , "--hostPID", tostring(pid) }, } lsp.tsserver.setup { capabilities = lspcap, on_attach = lspatt, } lsp.yamlls.setup { capabilities = lspcap, on_attach = lspatt, } lsp.ccls.setup { capabilities = lspcap, on_attach = lspatt, } local runtime_path = vim.split(package.path, ';') table.insert(runtime_path, "lua/?.lua") table.insert(runtime_path, "lua/?/init.lua") lsp.sumneko_lua.setup { capabilities = lspcap, on_attach = lspatt, cmd = { "lua-language-server", "-E" }, settings = { Lua = { runtime = { version = 'LuaJIT', path = runtime_path, }, diagnostics = { globals = {'vim', 'use'}, }, workspace = { library = vim.api.nvim_get_runtime_file("", true), }, telemetry = { enable = false, }, }, } } lsp.perlpls.setup { capabilities = lspcap, on_attach = lspatt, settings = { perl = { perlcritic = { enabled = false }, syntax = { enabled = true } } } } lsp.efm.setup { capabilities = lspcap, on_attach = lspatt, filetypes = {"sh", "markdown"}, settings = { languages = { sh = {{ lintCommand = "shellcheck -f gcc -x", lintSource = "shellcheck", lintFormats = { "%f:%l:%c: %trror: %m", "%f:%l:%c: %tarning: %m", "%f:%l:%c: %tote: %m" }, lintIgnoreExitCode = true }}, markdown = {{ lintCommand = "write-good --parse", lintSource = "write-good", lintFormats = { "%f:%l:%c:%m" }, }}, } } } lsp.pyright.setup { capabilities = lspcap, on_attach = lspatt, } -- setup for Arduboy dev lsp.arduino_language_server.setup { capabilities = lspcap, on_attach = lspatt, cmd = { "arduino-language-server", "-cli-config", "~/.arduino15/arduino-cli.yaml", "-cli", "/bin/arduino-cli", "-clangd", "/usr/bin/clangd", "-fqbn", "arduino:avr:leonardo" }, } -- status line setup require'lualine'.setup { options = { theme = 'catppuccin', component_separators = { left = '', right = '' }, section_separators = { left = '', right = '' }, }, sections = { lualine_a = {'mode'}, lualine_b = {'branch'}, lualine_c = {{ 'filename', symbols = { modified = '✎ ', readonly = '🔒 ', unnamed = '[No Name]' } }}, lualine_x = {{ "diagnostics", sources = {"nvim_lsp"}, icons_enabled = false }}, lualine_y = {'progress'}, lualine_z = {'location'}, } } -- zen mode config require('true-zen').setup { modes = { ataraxis = { callbacks = { open_pre = function() vim.opt.linebreak = true vim.opt.spell = true end, close_post = function() vim.opt.linebreak = false vim.opt.spell = false end } } }, integrations = { tmux = true, lualine = true } }