mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-12-14 13:03:39 +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
|
||||
|
||||
env:
|
||||
TERM: xterm-256color
|
||||
|
||||
font:
|
||||
normal:
|
||||
family: "Iosevka Nerd Font"
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
"rootPatterns": ["*.cabal", "stack.yaml", "cabal.project", "package.yaml", "hie.yaml"],
|
||||
"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 'jreybert/vimagit'
|
||||
Plug 'airblade/vim-gitgutter'
|
||||
Plug 'dag/vim-fish'
|
||||
Plug 'uiiaoo/java-syntax.vim'
|
||||
|
||||
call plug#end()
|
||||
|
||||
colorscheme dracula
|
||||
|
||||
let g:airline_powerline_fonts = 1
|
||||
|
||||
let g:neovide_iso_layout = v:true
|
||||
let NERDTreeShowHidden=1
|
||||
|
||||
set guifont=Iosevka:12
|
||||
nnoremap <silent> fzf :FZF<CR>
|
||||
|
||||
" quick cursor movement while holding ctrl
|
||||
nnoremap <C-Up> 5k
|
||||
nnoremap <C-Down> 5j
|
||||
|
||||
" quick pasting/yoinking to system register
|
||||
nnoremap +y "+y
|
||||
nnoremap +p "+p
|
||||
|
@ -52,6 +56,21 @@ nnoremap *y "*y
|
|||
nnoremap *p "*p
|
||||
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.
|
||||
nmap <silent> gd <Plug>(coc-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
|
||||
set nocompatible
|
||||
|
||||
set mouse=a
|
||||
set termguicolors
|
||||
|
||||
|
|
Loading…
Reference in a new issue