aboutsummaryrefslogtreecommitdiffhomepage
path: root/init.lua
diff options
context:
space:
mode:
authorHsieh Chin Fan <pham@topo.tw>2023-05-02 08:51:37 +0800
committerHsieh Chin Fan <pham@topo.tw>2023-05-02 08:55:57 +0800
commitccffebfd91e5c3116c30207c469239a40564e830 (patch)
tree31f6d5e3788a54c4d93a47ad95c9b1aeeff88d6b /init.lua
parent7a63abdde19dd3094bf92d192e89cb96c09583c4 (diff)
Update
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua13
1 files changed, 11 insertions, 2 deletions
diff --git a/init.lua b/init.lua
index 33294bb..c368fb7 100644
--- a/init.lua
+++ b/init.lua
@@ -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
244local custom_wombat = require'lualine.themes.wombat'
245custom_wombat.normal.b.bg = '#a8a8a8'
246custom_wombat.normal.b.fg = '#444444'
247require('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()`
245require('telescope').setup { 254require('telescope').setup {