|
@ -13,11 +13,11 @@ vim.o.background = 'dark' |
|
|
require('solarized').setup { |
|
|
require('solarized').setup { |
|
|
-- theme = 'neo'; |
|
|
-- theme = 'neo'; |
|
|
theme = 'default'; |
|
|
theme = 'default'; |
|
|
highlights = function (colors, colorhelper) |
|
|
-- highlights = function (colors, colorhelper) |
|
|
return { |
|
|
-- return { |
|
|
Folded = { underline = false, fg = colors.base3, bg = colors.base03 } |
|
|
-- " Folded = { underline = false, fg = colors.base3, bg = colors.base03 } |
|
|
} |
|
|
-- } |
|
|
end |
|
|
-- end |
|
|
} |
|
|
} |
|
|
vim.cmd("colorscheme solarized") |
|
|
vim.cmd("colorscheme solarized") |
|
|
EOF |
|
|
EOF |
|
@ -50,9 +50,7 @@ set completeopt=noinsert,menuone,noselect " options for Insert mode completion |
|
|
set cursorline " highlight the screen line of the cursor |
|
|
set cursorline " highlight the screen line of the cursor |
|
|
set foldenable " set to display all folds open |
|
|
set foldenable " set to display all folds open |
|
|
set foldopen-=block " for which commands a fold will be opened |
|
|
set foldopen-=block " for which commands a fold will be opened |
|
|
set foldmethod=expr " folding type |
|
|
set foldmethod=marker |
|
|
" set foldmethod=marker |
|
|
|
|
|
set foldexpr=nvim_treesitter#foldexpr() |
|
|
|
|
|
set nofoldenable " disable folding at startup. |
|
|
set nofoldenable " disable folding at startup. |
|
|
set foldtext=FoldText() " expression used to display for a closed fold |
|
|
set foldtext=FoldText() " expression used to display for a closed fold |
|
|
set formatoptions-=cro " how automatic formatting is to be done |
|
|
set formatoptions-=cro " how automatic formatting is to be done |
|
|