From 786d69e996e43f628c5be10c616b87b2e90c36fd Mon Sep 17 00:00:00 2001 From: Johannes Stoelp Date: Fri, 17 Sep 2021 22:35:14 +0200 Subject: nvim: replace nvim config with experimental --- nvim.init.vim | 226 ++++++++++++++++++++++++++++++--------------- nvim.init.vim.experimental | 167 --------------------------------- 2 files changed, 149 insertions(+), 244 deletions(-) delete mode 100644 nvim.init.vim.experimental diff --git a/nvim.init.vim b/nvim.init.vim index c3d0ba8..2cf7af6 100644 --- a/nvim.init.vim +++ b/nvim.init.vim @@ -1,95 +1,167 @@ -" dotfiles -- nvim.init.vim +" dotfiles -- nvim.init.vim.experimental " author: johannst -" {{{ Basic vim +let mapleader=" " -if !exists('&mapleader') - let mapleader=" " -endif - -" disable preview window in completion -set completeopt-=preview - -" allow modified buffers in the background -set hidden - -" make cmdprompt 2 lines high -> used for echodoc to display signature -set cmdheight=2 +" ----------------- +" Plugins. +" ----------------- -" enable mouse -set mouse=a +call plug#begin('~/.nvim/plugged') + " Colors. + Plug 'chriskempson/base16-vim' -" render `listchars` chars -set list -set listchars=tab:>-,trail:- + " LSP & Completion. + Plug 'neovim/nvim-lspconfig' + Plug 'hrsh7th/nvim-compe' -" highlight search results -set hlsearch + " Telescope. + Plug 'nvim-lua/plenary.nvim' + Plug 'nvim-telescope/telescope.nvim' + Plug 'nvim-telescope/telescope-fzf-native.nvim', { 'do': 'make' } +call plug#end() -" }}} -" {{{ Plugins -call plug#begin(stdpath('data') . '/plugged') +" ----------------- +" Setters. +" ----------------- -Plug 'autozimu/LanguageClient-neovim', { - \ 'branch': 'next', - \ 'do': 'bash install.sh', - \ } +set termguicolors +set background=dark +colorscheme base16-default-dark -Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } -Plug 'junegunn/fzf.vim' +set relativenumber +set number +set signcolumn=yes -Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } -Plug 'Shougo/echodoc.vim' +set mouse=a +set scrolloff=8 -call plug#end() +set tabstop=4 +set softtabstop=4 +set shiftwidth=4 +set smartindent +set expandtab -" }}} -" {{{ LanguageClient - -let g:LanguageClient_serverCommands = { - \ 'rust': ['rust-analyzer'], - \ 'cpp': ['clangd', '--completion-style=detailed'], - \ 'c': ['clangd', '--completion-style=detailed'], - \ } - -let g:LanguageClient_autoStart = 1 -let g:LanguageClient_selectionUI = "fzf" - -function ConfigureLSP() - nnoremap ld :call LanguageClient#textDocument_definition() - nnoremap lr :call LanguageClient#textDocument_rename() - nnoremap lf :call LanguageClient#textDocument_formatting() - nnoremap lt :call LanguageClient#textDocument_typeDefinition() - nnoremap lx :call LanguageClient#textDocument_references() - nnoremap la :call LanguageClient_workspace_applyEdit() - nnoremap lc :call LanguageClient#textDocument_completion() - nnoremap lh :call LanguageClient#textDocument_hover() - nnoremap ls :call LanguageClient_textDocument_documentSymbol() - nnoremap lm :call LanguageClient_contextMenu() - - " set LSP formatting for 'gq' - set formatexpr=LanguageClient#textDocument_rangeFormatting_sync() -endfunction() - -augroup LSP - autocmd! - autocmd FileType rust,c,cpp call ConfigureLSP() -augroup END +set list +set listchars=tab:>-,trail:- -augroup LSP_autofmt - autocmd! - autocmd BufWritePre *.rs,*.h,,*.c,*.hh,*.cc,*.hpp,*.cpp call LanguageClient#textDocument_formatting() -augroup END +set hidden +set nobackup +set noswapfile -" }}} -" {{{ Deoplete +set hlsearch +set incsearch -let g:deoplete#enable_at_startup = 1 +set nowrap -" }}} -" {{{ Echodoc +if executable('rg') + set grepprg=rg\ --vimgrep +endif -let g:echodoc#enable_at_startup = 1 -let g:echodoc#type = 'signature' +" ----------------- +" LSP & Complete. +" ----------------- + +"set completeopt=menuone,noinsert,noselect + +lua << EOF +local on_attach = function(_client, bufnr) + -- Install `omnifunc` completion handler, get completion with . + vim.api.nvim_buf_set_option(bufnr, "omnifunc", "v:lua.vim.lsp.omnifunc") + + -- Key mappings. + local opts = { noremap=true, silent=true } + vim.api.nvim_buf_set_keymap(bufnr, "n", "K", "lua vim.lsp.buf.hover()", opts) + vim.api.nvim_buf_set_keymap(bufnr, "n", "", "lua vim.lsp.buf.definition()", opts) + vim.api.nvim_buf_set_keymap(bufnr, "n", "r", "lua vim.lsp.buf.references()", opts) + vim.api.nvim_buf_set_keymap(bufnr, "n", "i", "lua vim.lsp.buf.implementation()", opts) + vim.api.nvim_buf_set_keymap(bufnr, "n", "f", "lua vim.lsp.buf.formatting()", opts) +end + +-- Setup rust-analyzer. +require'lspconfig'.rust_analyzer.setup { + on_attach = on_attach, +} + +-- Setup clangd. +require'lspconfig'.clangd.setup { + cmd = { "clangd", "--background-index", "--completion-style=detailed" }, + on_attach = on_attach, +} + +-- Setup pyright. +require'lspconfig'.pyright.setup { + on_attach = on_attach, +} + +-- Setup nvim-compe. +require'compe'.setup { + enabled = true; + autocomplete = true; + debug = false; + min_length = 1; + preselect = 'enable'; + throttle_time = 80; + source_timeout = 200; + incomplete_delay = 400; + max_abbr_width = 100; + max_kind_width = 100; + max_menu_width = 100; + documentation = true; + + source = { + path = true; + buffer = false; + calc = false; + nvim_lsp = true; + nvim_lua = false; + vsnip = false; + ultisnips = false; + }; +} + +vim.o.completeopt = "menuone,noselect" + +vim.api.nvim_set_keymap("i", "", "compe#complete()", {expr = true}) +vim.api.nvim_set_keymap("i", "", "compe#confirm('')", {expr = true}) +vim.api.nvim_set_keymap("i", "", "compe#close('')", {expr = true}) + +-- Telescope. +local picker_cfg = { theme = "ivy" } + +require('telescope').setup{ + pickers = { + buffers = picker_cfg, + find_files = picker_cfg, + man_pages = picker_cfg, + }, +} +-- Telescope: load fzf-native. +require('telescope').load_extension('fzf') +EOF + +" ----------------- +" Mappings. +" ----------------- + +vnoremap p "_dP + +" Telescope +nnoremap fb Telescope buffers +nnoremap ff Telescope find_files +nnoremap fe Telescope file_browser +nnoremap fg Telescope live_grep +nnoremap fm Telescope man_pages sections={"2","3"} +nnoremap ft Telescope lsp_document_symbols +nnoremap fwt Telescope lsp_dynamic_workspace_symbols + +" ----------------- +" Autogroups. +" ----------------- + +augroup AG_highlight_yank + autocmd! + autocmd TextYankPost * silent! lua require'vim.highlight'.on_yank({timeout = 300}) +augroup END -" }}} +" vim:ft=vim diff --git a/nvim.init.vim.experimental b/nvim.init.vim.experimental deleted file mode 100644 index 2cf7af6..0000000 --- a/nvim.init.vim.experimental +++ /dev/null @@ -1,167 +0,0 @@ -" dotfiles -- nvim.init.vim.experimental -" author: johannst - -let mapleader=" " - -" ----------------- -" Plugins. -" ----------------- - -call plug#begin('~/.nvim/plugged') - " Colors. - Plug 'chriskempson/base16-vim' - - " LSP & Completion. - Plug 'neovim/nvim-lspconfig' - Plug 'hrsh7th/nvim-compe' - - " Telescope. - Plug 'nvim-lua/plenary.nvim' - Plug 'nvim-telescope/telescope.nvim' - Plug 'nvim-telescope/telescope-fzf-native.nvim', { 'do': 'make' } -call plug#end() - -" ----------------- -" Setters. -" ----------------- - -set termguicolors -set background=dark -colorscheme base16-default-dark - -set relativenumber -set number -set signcolumn=yes - -set mouse=a -set scrolloff=8 - -set tabstop=4 -set softtabstop=4 -set shiftwidth=4 -set smartindent -set expandtab - -set list -set listchars=tab:>-,trail:- - -set hidden -set nobackup -set noswapfile - -set hlsearch -set incsearch - -set nowrap - -if executable('rg') - set grepprg=rg\ --vimgrep -endif - -" ----------------- -" LSP & Complete. -" ----------------- - -"set completeopt=menuone,noinsert,noselect - -lua << EOF -local on_attach = function(_client, bufnr) - -- Install `omnifunc` completion handler, get completion with . - vim.api.nvim_buf_set_option(bufnr, "omnifunc", "v:lua.vim.lsp.omnifunc") - - -- Key mappings. - local opts = { noremap=true, silent=true } - vim.api.nvim_buf_set_keymap(bufnr, "n", "K", "lua vim.lsp.buf.hover()", opts) - vim.api.nvim_buf_set_keymap(bufnr, "n", "", "lua vim.lsp.buf.definition()", opts) - vim.api.nvim_buf_set_keymap(bufnr, "n", "r", "lua vim.lsp.buf.references()", opts) - vim.api.nvim_buf_set_keymap(bufnr, "n", "i", "lua vim.lsp.buf.implementation()", opts) - vim.api.nvim_buf_set_keymap(bufnr, "n", "f", "lua vim.lsp.buf.formatting()", opts) -end - --- Setup rust-analyzer. -require'lspconfig'.rust_analyzer.setup { - on_attach = on_attach, -} - --- Setup clangd. -require'lspconfig'.clangd.setup { - cmd = { "clangd", "--background-index", "--completion-style=detailed" }, - on_attach = on_attach, -} - --- Setup pyright. -require'lspconfig'.pyright.setup { - on_attach = on_attach, -} - --- Setup nvim-compe. -require'compe'.setup { - enabled = true; - autocomplete = true; - debug = false; - min_length = 1; - preselect = 'enable'; - throttle_time = 80; - source_timeout = 200; - incomplete_delay = 400; - max_abbr_width = 100; - max_kind_width = 100; - max_menu_width = 100; - documentation = true; - - source = { - path = true; - buffer = false; - calc = false; - nvim_lsp = true; - nvim_lua = false; - vsnip = false; - ultisnips = false; - }; -} - -vim.o.completeopt = "menuone,noselect" - -vim.api.nvim_set_keymap("i", "", "compe#complete()", {expr = true}) -vim.api.nvim_set_keymap("i", "", "compe#confirm('')", {expr = true}) -vim.api.nvim_set_keymap("i", "", "compe#close('')", {expr = true}) - --- Telescope. -local picker_cfg = { theme = "ivy" } - -require('telescope').setup{ - pickers = { - buffers = picker_cfg, - find_files = picker_cfg, - man_pages = picker_cfg, - }, -} --- Telescope: load fzf-native. -require('telescope').load_extension('fzf') -EOF - -" ----------------- -" Mappings. -" ----------------- - -vnoremap p "_dP - -" Telescope -nnoremap fb Telescope buffers -nnoremap ff Telescope find_files -nnoremap fe Telescope file_browser -nnoremap fg Telescope live_grep -nnoremap fm Telescope man_pages sections={"2","3"} -nnoremap ft Telescope lsp_document_symbols -nnoremap fwt Telescope lsp_dynamic_workspace_symbols - -" ----------------- -" Autogroups. -" ----------------- - -augroup AG_highlight_yank - autocmd! - autocmd TextYankPost * silent! lua require'vim.highlight'.on_yank({timeout = 300}) -augroup END - -" vim:ft=vim -- cgit v1.2.3