From 00723ab4bc8097785ace3e9f07beaea43333d3a0 Mon Sep 17 00:00:00 2001 From: self Date: Wed, 14 Sep 2022 19:01:36 +0100 Subject: Q and WQ also added --- init.vim | 71 ++++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 40 insertions(+), 31 deletions(-) (limited to 'init.vim') diff --git a/init.vim b/init.vim index e9708be..ade682a 100755 --- a/init.vim +++ b/init.vim @@ -26,8 +26,8 @@ set termguicolors " Themes don't seem to work without this. " Some aliases to make my life easier command W w command Wq wq - - +command Q q +command WQ wq " vim-plug -> call plug#begin('~/.config/nvim/plugged') @@ -80,7 +80,6 @@ Plug 'https://github.com/acetylen/boring.nvim' Plug 'https://github.com/rktjmp/lush.nvim' Plug 'https://github.com/mcchrish/zenbones.nvim' - " <- end themes """"""""""""""" @@ -107,10 +106,9 @@ Plug 'glts/vim-radical' " Repeat commands Plug 'tpope/vim-repeat' - " Rainbow brackets for easy viewing Plug 'luochen1990/rainbow' -let g:rainbow_active = 1 +let g:rainbow_active = 0 " Autoclose brackets Plug 'cohama/lexima.vim' @@ -120,7 +118,6 @@ let g:enable_endwise_rules = 1 Plug 'alvan/vim-closetag' " Close HTML tags - " Modify surrounding brackets Plug 'tpope/vim-surround' @@ -135,11 +132,9 @@ Plug 'tiagofumo/vim-nerdtree-syntax-highlight' Plug 'ryanoasis/vim-devicons' " must be last? nmap :NERDTreeToggle - " Git Plug 'tpope/vim-fugitive' - Plug 'airblade/vim-gitgutter/' " Display changes in sidebar to left " Lightline @@ -172,11 +167,13 @@ Plug 'hrsh7th/cmp-path' Plug 'hrsh7th/cmp-buffer' Plug 'simrat39/rust-tools.nvim' Plug 'hrsh7th/vim-vsnip' +Plug 'nvim-lua/lsp_extensions.nvim' Plug 'nvim-lua/plenary.nvim' Plug 'mfussenegger/nvim-dap' Plug 'folke/todo-comments.nvim' + " For C++ development Plug 'jackguo380/vim-lsp-cxx-highlight' @@ -185,13 +182,14 @@ Plug 'nvim-lua/popup.nvim' Plug 'nvim-lua/plenary.nvim' Plug 'nvim-telescope/telescope.nvim' -" Unused -" Plug 'rust-lang/rust.vim' -" Plug 'dense-analysis/ale' - call plug#end() " <- vim-plug +" :help completeopt +set completeopt=menu,menuone,longest,noselect,noinsert +set shortmess+=c +set signcolumn=yes + " Set Theme if strftime("%H") >= 6 && strftime("%H") < 18 set background=light @@ -204,24 +202,7 @@ endif " numb :lua require('numb').setup() -" todo-comments -lua << EOF - require("todo-comments").setup { - -- your configuration comes here - -- or leave it empty to use the default settings - -- refer to the configuration section below - } -EOF - -" :help completeopt -set completeopt=menu,menuone,longest,noselect - -set shortmess+=c -set signcolumn=yes - -" Configure LSP through rust-tools.nvim plugin. -" rust-tools will configure and enable certain LSP features for us. -" See https://github.com/simrat39/rust-tools.nvim#configuration +" Lua: LSP Configs lua <