diff options
author | AnInternetTroll <lucafulger@gmail.com> | 2022-01-23 17:48:11 +0000 |
---|---|---|
committer | AnInternetTroll <lucafulger@gmail.com> | 2022-01-23 17:48:11 +0000 |
commit | ffefde9b4f0a02df8b25d9eb28d7ffbb9648b0e2 (patch) | |
tree | 9a6154e005c50ef5aa9c9b9b820f4f4a38ba601b /.config/nvim/lua/custom/chadrc.lua | |
parent | b8821cb26c5d87386fb052ea279afbe467d232d3 (diff) | |
download | dotfiles-ffefde9b4f0a02df8b25d9eb28d7ffbb9648b0e2.tar dotfiles-ffefde9b4f0a02df8b25d9eb28d7ffbb9648b0e2.tar.gz dotfiles-ffefde9b4f0a02df8b25d9eb28d7ffbb9648b0e2.tar.bz2 dotfiles-ffefde9b4f0a02df8b25d9eb28d7ffbb9648b0e2.tar.lz dotfiles-ffefde9b4f0a02df8b25d9eb28d7ffbb9648b0e2.tar.xz dotfiles-ffefde9b4f0a02df8b25d9eb28d7ffbb9648b0e2.tar.zst dotfiles-ffefde9b4f0a02df8b25d9eb28d7ffbb9648b0e2.zip |
nvchad stuff
Diffstat (limited to '')
-rw-r--r-- | .config/nvim/lua/custom/chadrc.lua | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/.config/nvim/lua/custom/chadrc.lua b/.config/nvim/lua/custom/chadrc.lua index bc4b88e..3880b87 100644 --- a/.config/nvim/lua/custom/chadrc.lua +++ b/.config/nvim/lua/custom/chadrc.lua @@ -2,7 +2,7 @@ -- This file is for NvChad options & tools, custom settings are split between here and 'lua/custom/init.lua' local M = {} -M.options, M.ui, M.mappings, M.plugins = {}, {}, {}, {} +-- M.options, M.ui, M.mappings, M.plugins = {}, {}, {}, {} -- NOTE: To use this, make a copy with `cp example_chadrc.lua chadrc.lua` @@ -11,12 +11,16 @@ M.options, M.ui, M.mappings, M.plugins = {}, {}, {}, {} -- To use this file, copy the structure of `core/default_config.lua`, -- examples of setting relative number & changing theme: --- M.options = { --- relativenumber = true, --- } +M.options = { + relativenumber = true, + expandtab = false, + smartindent = false, + tabstop = 4, +} M.ui = { - theme = "chadracula" + theme = "chadracula", + transparency = true, } -- NvChad included plugin options & overrides |