mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2025-03-05 02:59:59 +01:00
update configs
This commit is contained in:
parent
5beb5db41d
commit
fcff806d4e
3 changed files with 27 additions and 3 deletions
|
@ -1,4 +1,8 @@
|
||||||
background_opacity: 0.8
|
background_opacity: 0.8
|
||||||
|
|
||||||
|
env:
|
||||||
|
TERM: xterm-256color
|
||||||
|
|
||||||
font:
|
font:
|
||||||
normal:
|
normal:
|
||||||
family: "Iosevka Nerd Font"
|
family: "Iosevka Nerd Font"
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
"rootPatterns": ["*.cabal", "stack.yaml", "cabal.project", "package.yaml", "hie.yaml"],
|
"rootPatterns": ["*.cabal", "stack.yaml", "cabal.project", "package.yaml", "hie.yaml"],
|
||||||
"filetypes": ["haskell", "lhaskell"]
|
"filetypes": ["haskell", "lhaskell"]
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"java.home": "/usr/lib/jvm/java-11-graalvm"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -29,20 +29,24 @@ Plug 'vim-airline/vim-airline'
|
||||||
Plug 'vim-airline/vim-airline-themes'
|
Plug 'vim-airline/vim-airline-themes'
|
||||||
Plug 'jreybert/vimagit'
|
Plug 'jreybert/vimagit'
|
||||||
Plug 'airblade/vim-gitgutter'
|
Plug 'airblade/vim-gitgutter'
|
||||||
|
Plug 'dag/vim-fish'
|
||||||
|
Plug 'uiiaoo/java-syntax.vim'
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
colorscheme dracula
|
colorscheme dracula
|
||||||
|
|
||||||
let g:airline_powerline_fonts = 1
|
let g:airline_powerline_fonts = 1
|
||||||
|
let g:neovide_iso_layout = v:true
|
||||||
let NERDTreeShowHidden=1
|
let NERDTreeShowHidden=1
|
||||||
|
|
||||||
|
set guifont=Iosevka:12
|
||||||
nnoremap <silent> fzf :FZF<CR>
|
nnoremap <silent> fzf :FZF<CR>
|
||||||
|
|
||||||
" quick cursor movement while holding ctrl
|
" quick cursor movement while holding ctrl
|
||||||
nnoremap <C-Up> 5k
|
nnoremap <C-Up> 5k
|
||||||
nnoremap <C-Down> 5j
|
nnoremap <C-Down> 5j
|
||||||
|
|
||||||
" quick pasting/yoinking to system register
|
" quick pasting/yoinking to system register
|
||||||
nnoremap +y "+y
|
nnoremap +y "+y
|
||||||
nnoremap +p "+p
|
nnoremap +p "+p
|
||||||
|
@ -52,6 +56,21 @@ nnoremap *y "*y
|
||||||
nnoremap *p "*p
|
nnoremap *p "*p
|
||||||
nnoremap *d "*d
|
nnoremap *d "*d
|
||||||
|
|
||||||
|
" firemvim config
|
||||||
|
let g:firenvim_config = {
|
||||||
|
\ 'localSettings': {
|
||||||
|
\ '.*twitch\.tv.*': {
|
||||||
|
\ 'takeover': 'never'
|
||||||
|
\ }
|
||||||
|
\ }
|
||||||
|
\ }
|
||||||
|
|
||||||
|
" Symbol renaming.
|
||||||
|
nmap cn <Plug>(coc-rename)
|
||||||
|
|
||||||
|
" Apply AutoFix to problem on the current line.
|
||||||
|
nmap cf <Plug>(coc-fix-current)
|
||||||
|
|
||||||
" GoTo code navigation.
|
" GoTo code navigation.
|
||||||
nmap <silent> gd <Plug>(coc-definition)
|
nmap <silent> gd <Plug>(coc-definition)
|
||||||
nmap <silent> gy <Plug>(coc-type-definition)
|
nmap <silent> gy <Plug>(coc-type-definition)
|
||||||
|
@ -82,6 +101,6 @@ autocmd VimEnter * if argc() == 0 && !exists('s:std_in') && !exists("g:started_b
|
||||||
|
|
||||||
filetype plugin on
|
filetype plugin on
|
||||||
set nocompatible
|
set nocompatible
|
||||||
|
set mouse=a
|
||||||
set termguicolors
|
set termguicolors
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue