mirror of
https://github.com/jdhao/nvim-config.git
synced 2025-06-08 14:14:33 +02:00
Compare commits
3 Commits
plug/leap-
...
bb27d93433
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bb27d93433 | ||
|
|
9d9c3ef32f | ||
|
|
00e8c77b23 |
@@ -109,6 +109,20 @@ let g:Lf_PopupColorscheme = 'gruvbox_material'
|
|||||||
" items.
|
" items.
|
||||||
let g:Lf_CommandMap = {'<C-J>': ['<C-N>'], '<C-K>': ['<C-P>']}
|
let g:Lf_CommandMap = {'<C-J>': ['<C-N>'], '<C-K>': ['<C-P>']}
|
||||||
|
|
||||||
|
" do not preview results, it will add the file to buffer list
|
||||||
|
let g:Lf_PreviewResult = {
|
||||||
|
\ 'File': 0,
|
||||||
|
\ 'Buffer': 0,
|
||||||
|
\ 'Mru': 0,
|
||||||
|
\ 'Tag': 0,
|
||||||
|
\ 'BufTag': 1,
|
||||||
|
\ 'Function': 1,
|
||||||
|
\ 'Line': 0,
|
||||||
|
\ 'Colorscheme': 0,
|
||||||
|
\ 'Rg': 0,
|
||||||
|
\ 'Gtags': 0
|
||||||
|
\}
|
||||||
|
|
||||||
""""""""""""""""""""""""""""open-browser.vim settings"""""""""""""""""""
|
""""""""""""""""""""""""""""open-browser.vim settings"""""""""""""""""""
|
||||||
if g:is_win || g:is_mac
|
if g:is_win || g:is_mac
|
||||||
" Disable netrw's gx mapping.
|
" Disable netrw's gx mapping.
|
||||||
|
|||||||
@@ -127,6 +127,10 @@ require("lualine").setup {
|
|||||||
spell,
|
spell,
|
||||||
color = { fg = "black", bg = "#a7c080" },
|
color = { fg = "black", bg = "#a7c080" },
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"diagnostics",
|
||||||
|
sources = { "nvim_diagnostic" },
|
||||||
|
},
|
||||||
},
|
},
|
||||||
lualine_x = {
|
lualine_x = {
|
||||||
"encoding",
|
"encoding",
|
||||||
@@ -140,13 +144,11 @@ require("lualine").setup {
|
|||||||
},
|
},
|
||||||
"filetype",
|
"filetype",
|
||||||
},
|
},
|
||||||
lualine_y = { "progress" },
|
lualine_y = {
|
||||||
lualine_z = {
|
|
||||||
"location",
|
"location",
|
||||||
{
|
"progress",
|
||||||
"diagnostics",
|
|
||||||
sources = { "nvim_diagnostic" },
|
|
||||||
},
|
},
|
||||||
|
lualine_z = {
|
||||||
{
|
{
|
||||||
trailing_space,
|
trailing_space,
|
||||||
color = "WarningMsg",
|
color = "WarningMsg",
|
||||||
|
|||||||
Reference in New Issue
Block a user