From 4801ab78df913fde0b40e7086dd7c80cb6292742 Mon Sep 17 00:00:00 2001 From: self Date: Fri, 6 May 2022 19:13:26 +0100 Subject: Added go, ltex (sort of) & various other improvements to nvim + added paccache to setup --- init.vim | 36 ++++++++++++++++++++++++++++++++++-- 1 file changed, 34 insertions(+), 2 deletions(-) (limited to 'init.vim') diff --git a/init.vim b/init.vim index 055a99e..d2a1004 100755 --- a/init.vim +++ b/init.vim @@ -8,10 +8,11 @@ set tabstop=4 " number of columns occupied by a tab set softtabstop=4 " see multiple spaces as tabstops so does the right thing set expandtab " converts tabs to white space set shiftwidth=4 " width for autoindents -set autoindent " indent a new line the same amount as the line just typed +set autoindent " indent a new line the same amount as the line just typed and this is cool set number " add line numbers set wildmode=longest,list " get bash-like tab completions -set cc=80 " set an 80 column border for good coding style +set cc=80 " set an 80 column border for good coding style +highlight ColorColumn ctermbg=darkcyan filetype plugin indent on "allow auto-indenting depending on file type syntax on " syntax highlighting set mouse=a " enable mouse click @@ -31,6 +32,17 @@ Plug 'junegunn/vim-easy-align' xmap ga (EasyAlign) nmap ga (EasyAlign) +" Rainbow brackets for easy viewing +Plug 'luochen1990/rainbow' +let g:rainbow_active = 1 "set to 0 if you want to enable it later via :RainbowToggle + +" Autoclose brackets +Plug 'cohama/lexima.vim' +let g:lexima_enable_basic_rules = 1 +let g:lexima_enable_newline_rules = 1 +let g:enable_endwise_rules = 1 + + " For Rust development Plug 'hrsh7th/nvim-cmp' " Completion framework Plug 'hrsh7th/cmp-nvim-lsp' " LSP completion source for nvim-cmp @@ -67,6 +79,7 @@ set signcolumn=yes lua <