who knows
This commit is contained in:
parent
14a5399cdc
commit
6e40a452d7
6 changed files with 31 additions and 14 deletions
|
@ -130,10 +130,10 @@ bindsym $mod+Shift+e mode "$mode_system"
|
||||||
|
|
||||||
# appearance
|
# appearance
|
||||||
font xft:artwiz lime 7
|
font xft:artwiz lime 7
|
||||||
new_window pixel 2
|
new_window pixel 5
|
||||||
font xft:Roboto 13
|
font xft:Roboto 13
|
||||||
gaps inner 8
|
# gaps inner 8
|
||||||
gaps outer 0
|
# gaps outer 0
|
||||||
|
|
||||||
# app specific launch flags
|
# app specific launch flags
|
||||||
for_window [class="Peek"] floating enable
|
for_window [class="Peek"] floating enable
|
||||||
|
|
|
@ -4,7 +4,7 @@ italic_font Envy Code R Italic
|
||||||
|
|
||||||
font_size 10.0
|
font_size 10.0
|
||||||
|
|
||||||
window_padding_width 10.0
|
window_padding_width 2.0
|
||||||
term xterm-256color
|
term xterm-256color
|
||||||
enable_audio_bell no
|
enable_audio_bell no
|
||||||
sync_to_monitor yes
|
sync_to_monitor yes
|
||||||
|
|
|
@ -25,5 +25,5 @@
|
||||||
"port": 6008
|
"port": 6008
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"tsserver.log": "off"
|
"tsserver.log": "true"
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,6 +40,7 @@ set shiftwidth=4
|
||||||
set softtabstop=4
|
set softtabstop=4
|
||||||
set spell
|
set spell
|
||||||
set tabstop=4
|
set tabstop=4
|
||||||
|
set termguicolors
|
||||||
|
|
||||||
" install vim-plug
|
" install vim-plug
|
||||||
if !filereadable(expand('~/.local/share/nvim/site/autoload/plug.vim'))
|
if !filereadable(expand('~/.local/share/nvim/site/autoload/plug.vim'))
|
||||||
|
@ -51,7 +52,17 @@ call plug#begin('~/.local/share/nvim/plugged')
|
||||||
|
|
||||||
" color schemes
|
" color schemes
|
||||||
Plug 'dylanaraps/wal.vim'
|
Plug 'dylanaraps/wal.vim'
|
||||||
Plug 'sickill/vim-monokai'
|
Plug 'crusoexia/vim-monokai', "{{{
|
||||||
|
let g:monokai_term_italic = 1
|
||||||
|
let g:monokai_gui_italic = 1
|
||||||
|
"}}}
|
||||||
|
Plug 'sainnhe/sonokai', "{{{
|
||||||
|
" let g:sonokai_style = "andromeda"
|
||||||
|
let g:sonokai_style = "atlantis"
|
||||||
|
" let g:sonokai_style = "default"
|
||||||
|
" let g:sonokai_style = "maia"
|
||||||
|
" let g:sonokai_style = "shusia"
|
||||||
|
"}}}
|
||||||
|
|
||||||
" syntax
|
" syntax
|
||||||
Plug 'cakebaker/scss-syntax.vim'
|
Plug 'cakebaker/scss-syntax.vim'
|
||||||
|
@ -85,6 +96,10 @@ Plug 'tpope/vim-fugitive', "{{{
|
||||||
map \gs :Gstatus<CR>
|
map \gs :Gstatus<CR>
|
||||||
"}}}
|
"}}}
|
||||||
|
|
||||||
|
" Plug 'sheerun/vim-polyglot'
|
||||||
|
Plug 'preservim/tagbar', "{{{
|
||||||
|
map \t :TagbarToggle<CR>
|
||||||
|
"}}}
|
||||||
Plug 'neoclide/coc.nvim', {'branch': 'release'}, "{{{
|
Plug 'neoclide/coc.nvim', {'branch': 'release'}, "{{{
|
||||||
inoremap <silent><expr> <TAB>
|
inoremap <silent><expr> <TAB>
|
||||||
\ pumvisible() ? "\<C-n>" :
|
\ pumvisible() ? "\<C-n>" :
|
||||||
|
@ -137,7 +152,7 @@ Plug 'vim-airline/vim-airline', "{{{
|
||||||
let g:airline_symbols.readonly = '⭤'
|
let g:airline_symbols.readonly = '⭤'
|
||||||
let g:airline_symbols.linenr = '⭡'
|
let g:airline_symbols.linenr = '⭡'
|
||||||
let g:airline#extensions#tabline#enabled = 1
|
let g:airline#extensions#tabline#enabled = 1
|
||||||
let g:airline_theme = 'wal'
|
let g:airline_theme = 'sonokai'
|
||||||
"}}}
|
"}}}
|
||||||
Plug 'mattn/webapi-vim'
|
Plug 'mattn/webapi-vim'
|
||||||
Plug 'mattn/gist-vim'
|
Plug 'mattn/gist-vim'
|
||||||
|
@ -202,7 +217,8 @@ call plug#end()
|
||||||
" theme / visual
|
" theme / visual
|
||||||
try
|
try
|
||||||
" colorscheme wal
|
" colorscheme wal
|
||||||
colorscheme monokai
|
" colorscheme monokai
|
||||||
|
colorscheme sonokai
|
||||||
catch
|
catch
|
||||||
endtry
|
endtry
|
||||||
hi clear SpellBad " italicize misspellings
|
hi clear SpellBad " italicize misspellings
|
||||||
|
|
|
@ -33,6 +33,7 @@ alias egrep='egrep --color=auto'
|
||||||
alias edit='${EDITOR}:-vim}'
|
alias edit='${EDITOR}:-vim}'
|
||||||
|
|
||||||
#Prefer neovim if available
|
#Prefer neovim if available
|
||||||
# if (( $+commands[nvim] )) then
|
if (( $+commands[nvim] )) then
|
||||||
# alias vim='nvim'
|
alias vim='nvim'
|
||||||
# fi
|
alias vimdiff='nvim -d'
|
||||||
|
fi
|
||||||
|
|
|
@ -108,8 +108,7 @@ Plug 'easymotion/vim-easymotion', "{{{
|
||||||
map <leader><leader> <plug>(easymotion-prefix)
|
map <leader><leader> <plug>(easymotion-prefix)
|
||||||
"}}}
|
"}}}
|
||||||
Plug 'habamax/vim-godot'
|
Plug 'habamax/vim-godot'
|
||||||
"Plug 'sheerun/vim-polyglot'
|
Plug 'neoclide/coc.nvim', {'branch': 'release'}, "{{{
|
||||||
Plug 'neoclide/coc.nvim', {'do': 'yarn install --frozen-lockfile'}, "{{{
|
|
||||||
" let g:coc_global_extensions = [
|
" let g:coc_global_extensions = [
|
||||||
" \ 'coc-css',
|
" \ 'coc-css',
|
||||||
" \ 'coc-emoji',
|
" \ 'coc-emoji',
|
||||||
|
@ -122,6 +121,7 @@ Plug 'neoclide/coc.nvim', {'do': 'yarn install --frozen-lockfile'}, "{{{
|
||||||
" \ 'coc-tsserver',
|
" \ 'coc-tsserver',
|
||||||
" \ 'coc-yaml',
|
" \ 'coc-yaml',
|
||||||
" \ ]
|
" \ ]
|
||||||
|
Plug 'pappasam/coc-jedi', {'do': 'yarn install --frozen-lockfile'}
|
||||||
set signcolumn=yes
|
set signcolumn=yes
|
||||||
set updatetime=750
|
set updatetime=750
|
||||||
set shortmess+=c
|
set shortmess+=c
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue