feat: removed unused lsp config and tree style file manager
This commit is contained in:
parent
431140b212
commit
5d5b1bd3fb
@ -1,6 +1,5 @@
|
|||||||
" variables
|
" variables
|
||||||
let &path = getcwd() . '/**' . ',' . &path
|
let &path = getcwd() . '/**' . ',' . &path
|
||||||
let g:netrw_liststyle=3 " tree style file explorer
|
|
||||||
set expandtab
|
set expandtab
|
||||||
set smartindent
|
set smartindent
|
||||||
set shiftwidth=4
|
set shiftwidth=4
|
||||||
@ -18,56 +17,5 @@ source ~/.config/nvim/epitech_header.vim
|
|||||||
packadd! nvim-treesitter
|
packadd! nvim-treesitter
|
||||||
lua require('nvim-treesitter.configs').setup{highlight = {enable = true}}
|
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 <c-x><c-o>
|
|
||||||
" 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', '<cmd>lua vim.lsp.buf.declaration()<CR>', opts)
|
|
||||||
" buf_set_keymap('n', 'gd', '<cmd>lua vim.lsp.buf.definition()<CR>', opts)
|
|
||||||
" buf_set_keymap('n', 'K', '<cmd>lua vim.lsp.buf.hover()<CR>', opts)
|
|
||||||
" buf_set_keymap('n', 'gi', '<cmd>lua vim.lsp.buf.implementation()<CR>', opts)
|
|
||||||
" buf_set_keymap('n', '<C-k>', '<cmd>lua vim.lsp.buf.signature_help()<CR>', opts)
|
|
||||||
" buf_set_keymap('n', '<space>wa', '<cmd>lua vim.lsp.buf.add_workspace_folder()<CR>', opts)
|
|
||||||
" buf_set_keymap('n', '<space>wr', '<cmd>lua vim.lsp.buf.remove_workspace_folder()<CR>', opts)
|
|
||||||
" buf_set_keymap('n', '<space>wl', '<cmd>lua print(vim.inspect(vim.lsp.buf.list_workspace_folders()))<CR>', opts)
|
|
||||||
" buf_set_keymap('n', '<space>D', '<cmd>lua vim.lsp.buf.type_definition()<CR>', opts)
|
|
||||||
" buf_set_keymap('n', '<space>rn', '<cmd>lua vim.lsp.buf.rename()<CR>', opts)
|
|
||||||
" buf_set_keymap('n', '<space>ca', '<cmd>lua vim.lsp.buf.code_action()<CR>', opts)
|
|
||||||
" buf_set_keymap('n', 'gr', '<cmd>lua vim.lsp.buf.references()<CR>', opts)
|
|
||||||
" buf_set_keymap('n', '<space>e', '<cmd>lua vim.diagnostic.open_float()<CR>', opts)
|
|
||||||
" buf_set_keymap('n', '[d', '<cmd>lua vim.diagnostic.goto_prev()<CR>', opts)
|
|
||||||
" buf_set_keymap('n', ']d', '<cmd>lua vim.diagnostic.goto_next()<CR>', opts)
|
|
||||||
" buf_set_keymap('n', '<space>q', '<cmd>lua vim.diagnostic.setloclist()<CR>', opts)
|
|
||||||
" buf_set_keymap('n', '<space>f', '<cmd>lua vim.lsp.buf.formatting()<CR>', 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
|
" keybindings
|
||||||
nnoremap <C-c><C-h> :Header<CR>
|
nnoremap <C-c><C-h> :Header<CR>
|
||||||
|
Loading…
Reference in New Issue
Block a user