Neovim: LSP: Add bashls language server.
This commit is contained in:
parent
edcc6234d7
commit
db9fe7c045
|
@ -18,4 +18,3 @@ chmod +x waybar/.config/waybar/mediaplayer.py
|
||||||
|
|
||||||
sleep 1
|
sleep 1
|
||||||
echo -e "Done!"
|
echo -e "Done!"
|
||||||
|
|
||||||
|
|
|
@ -6,25 +6,20 @@
|
||||||
|
|
||||||
call plug#begin(stdpath('data') . '/plugged')
|
call plug#begin(stdpath('data') . '/plugged')
|
||||||
|
|
||||||
" OneDark color scheme
|
|
||||||
Plug 'ii14/onedark.nvim'
|
Plug 'ii14/onedark.nvim'
|
||||||
|
|
||||||
" lightline
|
|
||||||
Plug 'itchyny/lightline.vim'
|
Plug 'itchyny/lightline.vim'
|
||||||
|
|
||||||
" lightline-bufferline
|
|
||||||
Plug 'mengelbrecht/lightline-bufferline'
|
Plug 'mengelbrecht/lightline-bufferline'
|
||||||
|
|
||||||
" nvim-web-devicons
|
|
||||||
Plug 'kyazdani42/nvim-web-devicons'
|
Plug 'kyazdani42/nvim-web-devicons'
|
||||||
|
|
||||||
" vim-polyglot
|
|
||||||
Plug 'sheerun/vim-polyglot'
|
Plug 'sheerun/vim-polyglot'
|
||||||
|
Plug 'neovim/nvim-lspconfig'
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
|
|
||||||
""" BASICS
|
""" LSP SETTINGS
|
||||||
|
lua require'lspconfig'.bashls.setup{}
|
||||||
|
|
||||||
|
""" BASIC SETTINGS
|
||||||
|
|
||||||
set number
|
set number
|
||||||
set noshowmode
|
set noshowmode
|
||||||
|
|
Loading…
Reference in a new issue