patch export intelijj idea
This commit is contained in:
parent
c78f9dab7e
commit
81ca9ac556
|
@ -4,3 +4,7 @@
|
||||||
alias spu="sudo pacman -Syu"
|
alias spu="sudo pacman -Syu"
|
||||||
alias sps="sudo pacman -S"
|
alias sps="sudo pacman -S"
|
||||||
alias pss="pacman -Ss"
|
alias pss="pacman -Ss"
|
||||||
|
|
||||||
|
#Export
|
||||||
|
export _JAVA_AWT_WM_NONREPARENTING=1
|
||||||
|
|
||||||
|
|
2
foot.ini
2
foot.ini
|
@ -8,7 +8,7 @@
|
||||||
# title=foot
|
# title=foot
|
||||||
# locked-title=no
|
# locked-title=no
|
||||||
|
|
||||||
font=monospace:size=16
|
font=monospace:size=14
|
||||||
# font-bold=<bold variant of regular font>
|
# font-bold=<bold variant of regular font>
|
||||||
# font-italic=<italic variant of regular font>
|
# font-italic=<italic variant of regular font>
|
||||||
# font-bold-italic=<bold+italic variant of regular font>
|
# font-bold-italic=<bold+italic variant of regular font>
|
||||||
|
|
9
init.vim
9
init.vim
|
@ -27,13 +27,17 @@ Plug 'https://github.com/lifepillar/pgsql.vim' " PSQL Pluging needs :SQLSetType
|
||||||
Plug 'https://github.com/ap/vim-css-color' " CSS Color Preview
|
Plug 'https://github.com/ap/vim-css-color' " CSS Color Preview
|
||||||
Plug 'https://github.com/rafi/awesome-vim-colorschemes' " Retro Scheme
|
Plug 'https://github.com/rafi/awesome-vim-colorschemes' " Retro Scheme
|
||||||
Plug 'neoclide/coc.nvim', {'branch': 'release'} " Auto Completion
|
Plug 'neoclide/coc.nvim', {'branch': 'release'} " Auto Completion
|
||||||
Plug 'https://github.com/ryanoasis/vim-devicons' " Developer Icons
|
"Plug 'ryanoasis/vim-devicons' " Icons File
|
||||||
Plug 'https://github.com/tc50cal/vim-terminal' " Vim Terminal
|
Plug 'https://github.com/tc50cal/vim-terminal' " Vim Terminal
|
||||||
Plug 'https://github.com/terryma/vim-multiple-cursors' " CTRL + N for multiple cursors
|
Plug 'https://github.com/terryma/vim-multiple-cursors' " CTRL + N for multiple cursors
|
||||||
Plug 'https://github.com/preservim/tagbar' " Tagbar for code navigation
|
Plug 'https://github.com/preservim/tagbar' " Tagbar for code navigation
|
||||||
Plug 'norcalli/nvim-colorizer.lua' "Color Hexadecimal
|
Plug 'norcalli/nvim-colorizer.lua' "Color Hexadecimal
|
||||||
Plug 'https://github.com/chrisbra/unicode.vim' "For utf-8 emoji
|
Plug 'https://github.com/chrisbra/unicode.vim' "For utf-8 emoji
|
||||||
|
|
||||||
|
" for vim-devicons
|
||||||
|
set encoding=UTF-8
|
||||||
|
let g:airline_powerline_fonts = 1
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
" If there are only terminal and NerdTree, all close
|
" If there are only terminal and NerdTree, all close
|
||||||
|
@ -106,13 +110,12 @@ call plug#end()
|
||||||
nnoremap <C-S-Right> :call SetNERDTreeSize(g:NERDTreeDefaultSize)<CR>
|
nnoremap <C-S-Right> :call SetNERDTreeSize(g:NERDTreeDefaultSize)<CR>
|
||||||
|
|
||||||
"
|
"
|
||||||
nnoremap <F8> :TagbarToggle<CR>
|
"nnoremap <F8> :TagbarToggle<CR>
|
||||||
|
|
||||||
" Symbol for folder in nerd tree
|
" Symbol for folder in nerd tree
|
||||||
let g:NERDTreeDirArrowExpandable="+"
|
let g:NERDTreeDirArrowExpandable="+"
|
||||||
let g:NERDTreeDirArrowCollapsible="~"
|
let g:NERDTreeDirArrowCollapsible="~"
|
||||||
|
|
||||||
|
|
||||||
" Having longer updatetime (default is 4000 ms = 4s) leads to noticeable
|
" Having longer updatetime (default is 4000 ms = 4s) leads to noticeable
|
||||||
" delays and poor user experience
|
" delays and poor user experience
|
||||||
set updatetime=300
|
set updatetime=300
|
||||||
|
|
Loading…
Reference in a new issue