Hashem A. Damrah

Results 59 comments of Hashem A. Damrah

Here's the output: ``` set mail_check = 6 set mail_check_stats_interval = 60 set timeout = 600 ```

I don't think it's a duplicate because I have no windows already opened. Here's my new and updated version: ```lua local M = {} M.config = function() dvim.builtin.plugins.which_key.setup = {...

Yeah. I found out my issue. I had the following autocmd: ```lua vim.api.nvim_create_autocmd("BufEnter", { callback = function() vim.cmd('normal zz') end, }) ```

Alright. I'll start converting, and when I run into an issue, I'll ask here.

@avlec Updated the indentation and cleaned up the code.

After a little digging, I found the issue. For some reason, when using the `pinnacle` plugin, the `highlight` variable was being set to: `ctermbg=#505050 ctermfg=#d0d0d0 gui=italic`. So, I just added...

Alrighty. I just completed the gps part of the statusbar. Here's how the statusbar looks like. ![Screenshot_2022-08-30_14-15-40](https://user-images.githubusercontent.com/57925294/187544778-d711b25d-3399-4a9e-883c-e0b0d5c1d6be.png) Here's the code (I put this right after: `.. "%)" -- End item...

Finally. I figured out the final issue. I disable TreeSitter and IndentLine by adding the following autocmds: ```lua autocmd("BufEnter", "*", "TSBufEnable highlight") autocmd("BufEnter", "*", "IndentBlanklineToggle") autocmd("BufLeave", "*", "TSBufDisable highlight") autocmd("BufLeave",...

Something like this: ![Screenshot_2022-10-19_18-24-06](https://user-images.githubusercontent.com/57925294/196834254-e4975439-0404-4607-984e-4a649725231c.png) I'm still playing around with the colors. I'm thinking of just copying the colors from the tokyonight-night pallete. IDK, what are your thoughts?