lines and columns
This commit is contained in:
parent
c10c13b24c
commit
c1bf7a3105
@ -52,6 +52,16 @@ return function(use)
|
||||
'nvim-lualine/lualine.nvim',
|
||||
requires = { 'kyazdani42/nvim-web-devicons', opt = true }
|
||||
}
|
||||
use({'arkav/lualine-lsp-progress'})
|
||||
require('lualine').setup {
|
||||
options = { theme = 'palenight' },
|
||||
sections = {
|
||||
lualine_c = {
|
||||
'lsp_progress'
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
use({'voldikss/vim-floaterm'})
|
||||
use({'fatih/vim-go'})
|
||||
use({'whatyouhide/vim-gotham'})
|
||||
|
@ -18,6 +18,9 @@ vim.opt.lazyredraw = true
|
||||
vim.opt.splitbelow = true
|
||||
vim.opt.splitright = true
|
||||
|
||||
vim.opt.cursorline = true
|
||||
vim.opt.cursorcolumn = true
|
||||
|
||||
-- Global settings
|
||||
vim.opt.autochdir = true -- Keep vim's directory context same as the current buffer
|
||||
vim.opt.listchars = "tab:> ,trail:.,extends:$,nbsp:_"
|
||||
|
Loading…
Reference in New Issue
Block a user