diff options
author | Hsieh Chin Fan <pham@topo.tw> | 2023-05-02 08:51:37 +0800 |
---|---|---|
committer | Hsieh Chin Fan <pham@topo.tw> | 2023-05-02 08:55:57 +0800 |
commit | ccffebfd91e5c3116c30207c469239a40564e830 (patch) | |
tree | 31f6d5e3788a54c4d93a47ad95c9b1aeeff88d6b | |
parent | 7a63abdde19dd3094bf92d192e89cb96c09583c4 (diff) |
Update
-rw-r--r-- | init.lua | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -120,9 +120,8 @@ require('lazy').setup({ | |||
120 | opts = { | 120 | opts = { |
121 | options = { | 121 | options = { |
122 | icons_enabled = false, | 122 | icons_enabled = false, |
123 | theme = 'wombat', | ||
124 | component_separators = '|', | 123 | component_separators = '|', |
125 | section_separators = '', | 124 | section_separators = { left = '', right = '' }, |
126 | }, | 125 | }, |
127 | }, | 126 | }, |
128 | }, | 127 | }, |
@@ -240,6 +239,16 @@ vim.api.nvim_create_autocmd('TextYankPost', { | |||
240 | }) | 239 | }) |
241 | 240 | ||
242 | 241 | ||
242 | -- [[ Configure lualine ]] | ||
243 | -- Change the background of lualine_b section for normal mode | ||
244 | local custom_wombat = require'lualine.themes.wombat' | ||
245 | custom_wombat.normal.b.bg = '#a8a8a8' | ||
246 | custom_wombat.normal.b.fg = '#444444' | ||
247 | require('lualine').setup { | ||
248 | options = { theme = custom_wombat }, | ||
249 | } | ||
250 | |||
251 | |||
243 | -- [[ Configure Telescope ]] | 252 | -- [[ Configure Telescope ]] |
244 | -- See `:help telescope` and `:help telescope.setup()` | 253 | -- See `:help telescope` and `:help telescope.setup()` |
245 | require('telescope').setup { | 254 | require('telescope').setup { |