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.experimental | 167 --------------------------------------------- 1 file changed, 167 deletions(-) delete mode 100644 nvim.init.vim.experimental (limited to 'nvim.init.vim.experimental') 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