" variables let &path = getcwd() . '/**' . ',' . &path set expandtab set smartindent set shiftwidth=4 set tabstop=4 set number relativenumber set ignorecase set smartcase set list set mouse=a au FileType c,cpp,python set cc=81 " packages so ~/.config/nvim/epitech_header.vim packadd! nvim-treesitter lua require('nvim-treesitter.configs').setup{highlight = {enable = true}} "packadd! nvim-lspconfig "lua <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) " " -- 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) " vim.api.nvim_buf_set_keymap(bufnr, 'n', 'f', 'lua vim.lsp.buf.formatting()', opts) " end " " -- Use a loop to conveniently call 'setup' on multiple servers and " -- map buffer local keybindings when the language server attaches " local servers = { 'clangd' } " 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 "EOF " keybindings nnoremap :Header tnoremap