" variables let &path = getcwd() . '/**' . ',' . &path let g:netrw_liststyle=3 " tree style file explorer set expandtab set smartindent set shiftwidth=4 set tabstop=4 set number relativenumber set ignorecase set smartcase set list set mouse=a au BufNewFile,BufRead *.c set cc=81 au BufNewFile,BufRead *.h set cc=81 " packages source ~/.config/nvim/epitech_header.vim packadd! nvim-treesitter lua require('nvim-treesitter.configs').setup {highlight = {enable = true}} "packadd! nvim-lspconfig "lua << EOF " local nvim_lsp = require('lspconfig') " " -- 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) " local function buf_set_keymap(...) vim.api.nvim_buf_set_keymap(bufnr, ...) end " local function buf_set_option(...) vim.api.nvim_buf_set_option(bufnr, ...) end " " -- Enable completion triggered by " buf_set_option('omnifunc', 'v:lua.vim.lsp.omnifunc') " " -- Mappings. " local opts = { noremap=true, silent=true } " " -- See `:help vim.lsp.*` for documentation on any of the below functions " buf_set_keymap('n', 'gD', 'lua vim.lsp.buf.declaration()', opts) " buf_set_keymap('n', 'gd', 'lua vim.lsp.buf.definition()', opts) " buf_set_keymap('n', 'K', 'lua vim.lsp.buf.hover()', opts) " buf_set_keymap('n', 'gi', 'lua vim.lsp.buf.implementation()', opts) " buf_set_keymap('n', '', 'lua vim.lsp.buf.signature_help()', opts) " buf_set_keymap('n', 'wa', 'lua vim.lsp.buf.add_workspace_folder()', opts) " buf_set_keymap('n', 'wr', 'lua vim.lsp.buf.remove_workspace_folder()', opts) " buf_set_keymap('n', 'wl', 'lua print(vim.inspect(vim.lsp.buf.list_workspace_folders()))', opts) " buf_set_keymap('n', 'D', 'lua vim.lsp.buf.type_definition()', opts) " buf_set_keymap('n', 'rn', 'lua vim.lsp.buf.rename()', opts) " buf_set_keymap('n', 'ca', 'lua vim.lsp.buf.code_action()', opts) " buf_set_keymap('n', 'gr', 'lua vim.lsp.buf.references()', opts) " buf_set_keymap('n', 'e', 'lua vim.diagnostic.open_float()', opts) " buf_set_keymap('n', '[d', 'lua vim.diagnostic.goto_prev()', opts) " buf_set_keymap('n', ']d', 'lua vim.diagnostic.goto_next()', opts) " buf_set_keymap('n', 'q', 'lua vim.diagnostic.setloclist()', opts) " buf_set_keymap('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 ipairs(servers) do " nvim_lsp[lsp].setup { " on_attach = on_attach, " flags = { " debounce_text_changes = 150, " } " } " end "EOF " keybindings nnoremap :Header