diff options
Diffstat (limited to '.config/nvim/lua/settings.lua')
-rw-r--r-- | .config/nvim/lua/settings.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.config/nvim/lua/settings.lua b/.config/nvim/lua/settings.lua index b99eda7..2418a5b 100644 --- a/.config/nvim/lua/settings.lua +++ b/.config/nvim/lua/settings.lua | |||
@@ -10,6 +10,10 @@ local wo = vim.wo -- [w]indow-local [o]ptions | |||
10 | local bo = vim.bo -- [b]uffer-local [o]ptions | 10 | local bo = vim.bo -- [b]uffer-local [o]ptions |
11 | local opt = vim.opt -- convenient :set | 11 | local opt = vim.opt -- convenient :set |
12 | 12 | ||
13 | -- neovim filetype lua | ||
14 | vim.g.do_filetype_lua = true | ||
15 | vim.g.did_load_filetypes = false | ||
16 | |||
13 | -- look & feel | 17 | -- look & feel |
14 | o.termguicolors = true | 18 | o.termguicolors = true |
15 | 19 | ||