Added autocomplete extension

This commit is contained in:
Johannes Olzem 2023-07-27 01:50:02 +02:00
parent a1907e1225
commit 79261022a5
Signed by: jolzem
GPG Key ID: DB5485828E95A447
2 changed files with 12 additions and 13 deletions

View File

@ -37,9 +37,6 @@ font:
draw_bold_text_with_bright_colors: true draw_bold_text_with_bright_colors: true
# import:
# - /home/johannes/.config/alacritty/colors/material.yml
bell: bell:
animation: EaseOutExpo animation: EaseOutExpo
color: '0xffffff' color: '0xffffff'
@ -60,3 +57,4 @@ live_config_reload: true
shell: shell:
program: /bin/zsh program: /bin/zsh

View File

@ -18,7 +18,7 @@ set showmatch " Show matching brackets when text indicator is over them
set noerrorbells " Silence the error bell set noerrorbells " Silence the error bell
set novisualbell " Visually hide the error bell set novisualbell " Visually hide the error bell
set encoding=utf8 " Set text encoding as utf8 set encoding=utf8 " Set text encoding as utf8
set clipboard+=unnamedplus " Use the OS clipboard by default set clipboard=unnamedplus " Use the OS clipboard by default
set showtabline=2 " Use tabline set showtabline=2 " Use tabline
set splitright " split to the right instead of left set splitright " split to the right instead of left
set nowrap set nowrap
@ -28,15 +28,16 @@ set wildmode=longest,list,full
" PLUGINS " PLUGINS
" download to ~/.local/share/nvim/site/autoload/plug.vim " download to ~/.local/share/nvim/site/autoload/plug.vim
call plug#begin("~/.local/share/nvim/site/autoload/plugged") call plug#begin("~/.local/share/nvim/site/autoload/plugged")
Plug 'junegunn/goyo.vim' Plug 'junegunn/goyo.vim'
Plug 'neoclide/coc.nvim', {'branch': 'release'} Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'https://github.com/jiangmiao/auto-pairs.git' Plug 'https://github.com/jiangmiao/auto-pairs.git'
Plug 'lervag/vimtex' Plug 'lervag/vimtex'
Plug 'https://github.com/ap/vim-css-color' Plug 'https://github.com/ap/vim-css-color'
Plug 'https://github.com/907th/vim-auto-save.git' Plug 'https://github.com/907th/vim-auto-save.git'
Plug 'https://github.com/alvan/vim-closetag' Plug 'https://github.com/alvan/vim-closetag'
Plug 'vim-airline/vim-airline' Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes' Plug 'vim-airline/vim-airline-themes'
Plug 'maxboisvert/vim-simple-complete'
call plug#end() call plug#end()
let g:vimtex_view_method = 'zathura' let g:vimtex_view_method = 'zathura'