Update gols. Update lsp-signature config. Adds smoth scrolling. Adds highlight for current word.

This commit is contained in:
Mariano Uvalle 2022-01-09 13:58:55 -08:00
parent 91f122bcd1
commit 24acdf848a
6 changed files with 46 additions and 17 deletions

View file

@ -22,7 +22,6 @@ vim.o.updatetime = 300 -- Faster completion
vim.o.timeoutlen = 500 -- By default timeoutlen is 1000 ms
vim.cmd(":set number relativenumber")
vim.cmd("highlight ColorColumn ctermbg=0 guibg=grey")
------ Folding
-- vim.o.foldlevel = 99
@ -35,3 +34,29 @@ vim.cmd("highlight ColorColumn ctermbg=0 guibg=grey")
-- autocmd BufWinEnter * silent! loadview
-- augroup END
-- ]])
-- Show full file path in lightline.
vim.cmd([[
let g:lightline = {
\ 'colorscheme' : 'palenight',
\ 'active': {
\ 'left': [ [ 'mode', 'paste' ],
\ [ 'gitbranch', 'readonly', 'filename', 'modified' ] ]
\ },
\ 'component_function': {
\ 'filename': 'FilenameForLightline',
\ 'gitbranch': 'gitbranch#name'
\ }
\ }
function! FilenameForLightline()
let root = fnamemodify(get(b:, 'gitbranch_path'), ':h:h')
let path = expand('%:p')
if path[:len(root)-1] ==# root
return path[len(root)+1:]
endif
return expand('%')
endfunction
]])