summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/settings.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua/settings.lua')
-rw-r--r--.config/nvim/lua/settings.lua7
1 files changed, 4 insertions, 3 deletions
diff --git a/.config/nvim/lua/settings.lua b/.config/nvim/lua/settings.lua
index 2418a5b..27ad40d 100644
--- a/.config/nvim/lua/settings.lua
+++ b/.config/nvim/lua/settings.lua
@@ -5,14 +5,15 @@
5-- │▀▀ ▝▀▘ ▀ ▀ ▀▘▘ ▘▗▄▘▀▀ │ 5-- │▀▀ ▝▀▘ ▀ ▀ ▀▘▘ ▘▗▄▘▀▀ │
6-- └───────────────────────┘ 6-- └───────────────────────┘
7 7
8local o = vim.o -- gl[o]bal options 8local o = vim.o -- [o]ptions
9local wo = vim.wo -- [w]indow-local [o]ptions 9local wo = vim.wo -- [w]indow-local [o]ptions
10local bo = vim.bo -- [b]uffer-local [o]ptions 10local bo = vim.bo -- [b]uffer-local [o]ptions
11local go = vim.go -- [g]lobal [o]ptions
11local opt = vim.opt -- convenient :set 12local opt = vim.opt -- convenient :set
12 13
13-- neovim filetype lua 14-- neovim filetype lua
14vim.g.do_filetype_lua = true 15go.do_filetype_lua = true
15vim.g.did_load_filetypes = false 16go.did_load_filetypes = false
16 17
17-- look & feel 18-- look & feel
18o.termguicolors = true 19o.termguicolors = true