nvim: fix background color to transparent, remove github copilot
This commit is contained in:
@@ -25,12 +25,11 @@ Plug 'lervag/vimtex', { 'for': ['tex'] }
|
|||||||
Plug 'arcticicestudio/nord-vim'
|
Plug 'arcticicestudio/nord-vim'
|
||||||
Plug 'rhysd/vim-grammarous'
|
Plug 'rhysd/vim-grammarous'
|
||||||
Plug 'jalvesaq/Nvim-R', {'branch': 'stable', 'for': ['r', 'R', 'Rmd', 'rmd']}
|
Plug 'jalvesaq/Nvim-R', {'branch': 'stable', 'for': ['r', 'R', 'Rmd', 'rmd']}
|
||||||
Plug 'luk400/vim-jukit'
|
"Plug 'luk400/vim-jukit'
|
||||||
Plug 'David-Kunz/gen.nvim'
|
Plug 'David-Kunz/gen.nvim'
|
||||||
Plug 'othree/html5.vim'
|
Plug 'othree/html5.vim'
|
||||||
Plug 'pangloss/vim-javascript'
|
Plug 'pangloss/vim-javascript'
|
||||||
Plug 'evanleck/vim-svelte', {'branch': 'main'}
|
Plug 'evanleck/vim-svelte', {'branch': 'main'}
|
||||||
Plug 'github/copilot.vim',
|
|
||||||
Plug 'nathangrigg/vim-beancount'
|
Plug 'nathangrigg/vim-beancount'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
@@ -38,7 +37,7 @@ let g:vimwiki_list = [{'path': '~/dox/notes/', 'index': 'Main'}]
|
|||||||
|
|
||||||
set title
|
set title
|
||||||
set bg=light
|
set bg=light
|
||||||
set go=a
|
"set go=a
|
||||||
set mouse=a
|
set mouse=a
|
||||||
set nohlsearch
|
set nohlsearch
|
||||||
set clipboard+=unnamedplus
|
set clipboard+=unnamedplus
|
||||||
@@ -49,6 +48,13 @@ set noshowcmd
|
|||||||
set undofile
|
set undofile
|
||||||
colorscheme nord
|
colorscheme nord
|
||||||
|
|
||||||
|
" Use terminal background (transparent)
|
||||||
|
highlight Normal ctermbg=NONE guibg=NONE
|
||||||
|
highlight NonText ctermbg=NONE guibg=NONE
|
||||||
|
highlight LineNr ctermbg=NONE guibg=NONE
|
||||||
|
highlight SignColumn ctermbg=NONE guibg=NONE
|
||||||
|
highlight EndOfBuffer ctermbg=NONE guibg=NONE
|
||||||
|
|
||||||
" Some basics:
|
" Some basics:
|
||||||
nnoremap c "_c
|
nnoremap c "_c
|
||||||
set nocompatible
|
set nocompatible
|
||||||
@@ -69,7 +75,8 @@ colorscheme nord
|
|||||||
" Goyo plugin makes text more readable when writing prose:
|
" Goyo plugin makes text more readable when writing prose:
|
||||||
map <leader>f :Goyo \| set bg=light \| set linebreak<CR>
|
map <leader>f :Goyo \| set bg=light \| set linebreak<CR>
|
||||||
" Spell-check set to <leader>o, 'o' for 'orthography':
|
" Spell-check set to <leader>o, 'o' for 'orthography':
|
||||||
map <leader>o :setlocal spell! spelllang=en_us<CR>
|
map <leader>o :setlocal spell! spelllang=en_us<CR>:syntax on<CR>
|
||||||
|
map <leader>O :setlocal spell! spelllang=de_ch<CR>:syntax on<CR>
|
||||||
" Splits open at the bottom and right, which is non-retarded, unlike vim defaults.
|
" Splits open at the bottom and right, which is non-retarded, unlike vim defaults.
|
||||||
set splitbelow splitright
|
set splitbelow splitright
|
||||||
|
|
||||||
@@ -87,11 +94,6 @@ endfunction
|
|||||||
" Automatically compile RMarkdown on buffer write
|
" Automatically compile RMarkdown on buffer write
|
||||||
autocmd BufWritePost *.Rmd call CompileRMarkdown()
|
autocmd BufWritePost *.Rmd call CompileRMarkdown()
|
||||||
|
|
||||||
""" GitHub Copilot
|
|
||||||
" remap accept to <C-J> instead of <CR>
|
|
||||||
imap <silent><script><expr> <C-J> copilot#Accept("\<CR>")
|
|
||||||
let g:copilot_no_tab_map = v:true
|
|
||||||
|
|
||||||
|
|
||||||
" Python Notebooks using jukit
|
" Python Notebooks using jukit
|
||||||
let g:_jukit_python_os_cmd = 'python'
|
let g:_jukit_python_os_cmd = 'python'
|
||||||
@@ -626,3 +628,6 @@ nnoremap <silent><nowait> <space>p :<C-u>CocListResume<CR>
|
|||||||
inoremap <expr> <cr> pumvisible() ? "\<C-y>" : "\<C-g>u\<CR>"
|
inoremap <expr> <cr> pumvisible() ? "\<C-y>" : "\<C-g>u\<CR>"
|
||||||
|
|
||||||
inoremap <silent><expr> <NUL> coc#refresh()
|
inoremap <silent><expr> <NUL> coc#refresh()
|
||||||
|
|
||||||
|
""" Set the foldlevel to 99 (beancount)
|
||||||
|
set foldlevel=99
|
||||||
|
|||||||
Reference in New Issue
Block a user