feat(view): Disable the list option

This commit is contained in:
Simrat Grewal
2022-08-11 14:31:47 -07:00
parent 7747a020a6
commit 40bbb96359

View File

@@ -26,6 +26,7 @@ function View:setup_view()
vim.api.nvim_win_set_option(self.winnr, 'number', false)
vim.api.nvim_win_set_option(self.winnr, 'relativenumber', false)
vim.api.nvim_win_set_option(self.winnr, 'winfixwidth', true)
vim.api.nvim_win_set_option(self.winnr, 'list', false)
-- buffer stuff
vim.api.nvim_buf_set_name(self.bufnr, 'OUTLINE')
vim.api.nvim_buf_set_option(self.bufnr, 'filetype', 'Outline')