add sway and waybar configs, misc other stuff
This commit is contained in:
parent
192a283141
commit
528c998ee4
21 changed files with 634 additions and 58 deletions
|
@ -25,13 +25,5 @@
|
|||
"port": 6008
|
||||
}
|
||||
},
|
||||
"tsserver.log": "true",
|
||||
"tsserver.tsdk": ".yarn/sdks/typescript/lib",
|
||||
"eslint": {
|
||||
"packageManager": "yarn",
|
||||
"nodePath": ".yarn/sdks",
|
||||
"format": {
|
||||
"enable": true
|
||||
}
|
||||
}
|
||||
"tsserver.log": "true"
|
||||
}
|
||||
|
|
7
_config/nvim/ftplugin/gdscript.vim
Normal file
7
_config/nvim/ftplugin/gdscript.vim
Normal file
|
@ -0,0 +1,7 @@
|
|||
" to use folding provided by plugin
|
||||
# setlocal foldmethod=expr
|
||||
setlocal tabstop=4
|
||||
nnoremap <buffer> <F4> :GodotRunLast<CR>
|
||||
nnoremap <buffer> <F5> :GodotRun<CR>
|
||||
nnoremap <buffer> <F6> :GodotRunCurrent<CR>
|
||||
nnoremap <buffer> <F7> :GodotRunFZF<CR>
|
|
@ -41,7 +41,7 @@ set softtabstop=4
|
|||
set spell
|
||||
set tabstop=4
|
||||
set termguicolors
|
||||
|
||||
set filetype
|
||||
" install vim-plug
|
||||
if !filereadable(expand('~/.local/share/nvim/site/autoload/plug.vim'))
|
||||
silent !echo "Installing vim-plug..."
|
||||
|
@ -63,6 +63,12 @@ Plug 'sainnhe/sonokai', "{{{
|
|||
" let g:sonokai_style = "maia"
|
||||
" let g:sonokai_style = "shusia"
|
||||
"}}}
|
||||
Plug 'ghifarit53/tokyonight-vim', "{{{
|
||||
let g:tokyonight_style = 'night'
|
||||
let g:tokyonight_enable_italic = 1
|
||||
let g:tokyonight_trasnparent_background = 1
|
||||
"}}}
|
||||
Plug 'dracula/vim', {'as': 'dracula'}
|
||||
Plug 'nanotech/jellybeans.vim', "{{{
|
||||
let g:jellybeans_use_term_italics=1
|
||||
let g:jellybeans_use_gui_italics=1
|
||||
|
@ -83,7 +89,6 @@ Plug 'posva/vim-vue'
|
|||
Plug 'numirias/semshi', {'do': ':UpdateRemotePlugins'}
|
||||
Plug 'pantharshit00/vim-prisma'
|
||||
Plug 'alexlafroscia/postcss-syntax.vim'
|
||||
Plug 'habamax/vim-godot'
|
||||
|
||||
" functionality
|
||||
Plug 'tpope/vim-sensible'
|
||||
|
@ -221,13 +226,15 @@ Plug 'junegunn/fzf.vim', "{{{
|
|||
nnoremap <silent> ; :call <sid>FuzzyFiles()<CR>
|
||||
nnoremap <leader>/ :Rg<CR>
|
||||
|
||||
"}}}
|
||||
Plug 'habamax/vim-godot', "{{{
|
||||
|
||||
"}}}
|
||||
call plug#end()
|
||||
|
||||
" theme / visual
|
||||
try
|
||||
" colorscheme jellybeans
|
||||
colorscheme sonokai
|
||||
colorscheme dracula
|
||||
catch
|
||||
endtry
|
||||
hi clear SpellBad " italicize misspellings
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue