nvim
This commit is contained in:
parent
0906cac34d
commit
62b4648a5d
@ -2,6 +2,7 @@ syntax enable
|
|||||||
let mapleader = " "
|
let mapleader = " "
|
||||||
|
|
||||||
call plug#begin('~/.vim/plugged')
|
call plug#begin('~/.vim/plugged')
|
||||||
|
Plug 'atelierbram/vim-colors_atelier-schemes'
|
||||||
Plug 'robertmeta/nofrils'
|
Plug 'robertmeta/nofrils'
|
||||||
Plug 'vim-test/vim-test'
|
Plug 'vim-test/vim-test'
|
||||||
Plug 'hashivim/vim-terraform'
|
Plug 'hashivim/vim-terraform'
|
||||||
@ -48,7 +49,7 @@ map <Leader>v :WhichKey<CR>
|
|||||||
|
|
||||||
|
|
||||||
set tabstop=2
|
set tabstop=2
|
||||||
set shell=/bin/zsh
|
set shell=/usr/local/bin/fish
|
||||||
set shiftwidth=2
|
set shiftwidth=2
|
||||||
set expandtab
|
set expandtab
|
||||||
set hidden
|
set hidden
|
||||||
@ -62,7 +63,7 @@ set mouse=
|
|||||||
if (has("termguicolors"))
|
if (has("termguicolors"))
|
||||||
set termguicolors
|
set termguicolors
|
||||||
endif
|
endif
|
||||||
colorscheme space-vim-dark
|
colorscheme Atelier_SulphurpoolDark
|
||||||
hi Comment cterm=italic
|
hi Comment cterm=italic
|
||||||
|
|
||||||
" Relative numbers and when not in buffer set absolute numbers
|
" Relative numbers and when not in buffer set absolute numbers
|
||||||
@ -160,7 +161,7 @@ require'nvim-treesitter.configs'.setup {
|
|||||||
|
|
||||||
highlight = {
|
highlight = {
|
||||||
-- `false` will disable the whole extension
|
-- `false` will disable the whole extension
|
||||||
enable = false,
|
enable = true,
|
||||||
|
|
||||||
-- list of language that will be disabled
|
-- list of language that will be disabled
|
||||||
disable = {"vim", "c", "rust"},
|
disable = {"vim", "c", "rust"},
|
||||||
@ -194,3 +195,6 @@ let test#strategy = "neovim"
|
|||||||
|
|
||||||
" Mypy
|
" Mypy
|
||||||
nmap <silent> <leader>mp :Mypy<CR>
|
nmap <silent> <leader>mp :Mypy<CR>
|
||||||
|
|
||||||
|
|
||||||
|
let g:indentLine_setConceal = 0
|
||||||
|
Loading…
Reference in New Issue
Block a user