diff options
| author | omagdy7 <omar.professional8777@gmail.com> | 2022-07-01 19:24:34 +0200 |
|---|---|---|
| committer | omagdy7 <omar.professional8777@gmail.com> | 2022-07-01 19:24:34 +0200 |
| commit | d2642d6e008cf1755c85854152f2c36c2f48b16a (patch) | |
| tree | 74077402eb52eb47617cda67208e9262430b2916 /nvim | |
| parent | 3cc7dc86b1206c161761893591354c3e7645f20e (diff) | |
| download | dotfiles-d2642d6e008cf1755c85854152f2c36c2f48b16a.tar.xz dotfiles-d2642d6e008cf1755c85854152f2c36c2f48b16a.zip | |
Added a new script to force full composotion to nvidia settings
Diffstat (limited to 'nvim')
| -rw-r--r-- | nvim/.config/nvim/init.lua | 6 | ||||
| -rw-r--r-- | nvim/.config/nvim/lua/user/colorscheme.lua | 2 | ||||
| -rw-r--r-- | nvim/.config/nvim/lua/user/lualine.lua | 16 |
3 files changed, 15 insertions, 9 deletions
diff --git a/nvim/.config/nvim/init.lua b/nvim/.config/nvim/init.lua index 2833944..e687e26 100644 --- a/nvim/.config/nvim/init.lua +++ b/nvim/.config/nvim/init.lua @@ -18,6 +18,12 @@ vim.g.material_style = "deep ocean" --capabilities = require('cmp_nvim_lsp').update_capabilities(vim.lsp.protocol.make_client_capabilities()) --} +require('material').setup{ + disable = { + background = true + } +} + require "user.options" require "user.keymaps" diff --git a/nvim/.config/nvim/lua/user/colorscheme.lua b/nvim/.config/nvim/lua/user/colorscheme.lua index 893c30e..cc3c6e2 100644 --- a/nvim/.config/nvim/lua/user/colorscheme.lua +++ b/nvim/.config/nvim/lua/user/colorscheme.lua @@ -3,6 +3,6 @@ try colorscheme material catch /^Vim\%((\a\+)\)\=:E185/ colorscheme default - set background=dark + set background=background endtry ]] diff --git a/nvim/.config/nvim/lua/user/lualine.lua b/nvim/.config/nvim/lua/user/lualine.lua index 106391b..f02717e 100644 --- a/nvim/.config/nvim/lua/user/lualine.lua +++ b/nvim/.config/nvim/lua/user/lualine.lua @@ -94,23 +94,22 @@ -- Bubbles config for lualine -- Author: lokesh-krishna -- MIT license, see LICENSE for more details. - -- stylua: ignore local colors = { blue = '#80a0ff', cyan = '#79dac8', - black = '#080808', - white = '#c6c6c6', - red = '#ff5189', - violet = '#d183e8', - grey = '#303030', + black = '#000000', + white = '#ffffff', + red = '#B22222', + violet = '#c95d05', + grey = '#101010', } local bubbles_theme = { normal = { a = { fg = colors.black, bg = colors.violet }, b = { fg = colors.white, bg = colors.grey }, - c = { fg = colors.black, bg = colors.black }, + c = { fg = colors.grey, bg = colors.grey }, }, insert = { a = { fg = colors.black, bg = colors.blue } }, @@ -136,6 +135,7 @@ require('lualine').setup { }, lualine_b = { 'filename', 'branch' }, lualine_c = { 'fileformat' }, + lualine_d = { 'hey there' }, lualine_x = {}, lualine_y = { 'filetype', 'progress' }, lualine_z = { @@ -152,4 +152,4 @@ require('lualine').setup { }, tabline = {}, extensions = {}, -} + } |
