diff options
| author | Damjan 9000 <damjan.9000@gmail.com> | 2023-10-22 12:13:07 +0200 |
|---|---|---|
| committer | Damjan 9000 <damjan.9000@gmail.com> | 2023-11-03 21:01:49 +0100 |
| commit | 891ed7cd86ae31462e6c5f1ec648861745fc08c5 (patch) | |
| tree | a030270f84dfb925cb8324bb2dd6d7a5220e3fa6 /nvim/init.lua | |
| parent | ae70030be1e8071ef23e2e4173e6bf93a330f736 (diff) | |
| download | dots-891ed7cd86ae31462e6c5f1ec648861745fc08c5.tar.gz | |
Added lua/options.lua
Diffstat (limited to 'nvim/init.lua')
| -rw-r--r-- | nvim/init.lua | 42 |
1 files changed, 2 insertions, 40 deletions
diff --git a/nvim/init.lua b/nvim/init.lua index 2c00435..fa3cdfa 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -50,46 +50,8 @@ require('lazy-bootstrap') -- Setup lazy plugin manager - configure plugins require('lazy-plugins') --- [[ Setting options ]] --- See `:help vim.o` --- NOTE: You can change these options as you wish! - --- Set highlight on search -vim.o.hlsearch = false - --- Make line numbers default -vim.wo.number = true - --- Enable mouse mode -vim.o.mouse = 'a' - --- Sync clipboard between OS and Neovim. --- Remove this option if you want your OS clipboard to remain independent. --- See `:help 'clipboard'` -vim.o.clipboard = 'unnamedplus' - --- Enable break indent -vim.o.breakindent = true - --- Save undo history -vim.o.undofile = true - --- Case-insensitive searching UNLESS \C or capital in search -vim.o.ignorecase = true -vim.o.smartcase = true - --- Keep signcolumn on by default -vim.wo.signcolumn = 'yes' - --- Decrease update time -vim.o.updatetime = 250 -vim.o.timeoutlen = 300 - --- Set completeopt to have a better completion experience -vim.o.completeopt = 'menuone,noselect' - --- NOTE: You should make sure your terminal supports this -vim.o.termguicolors = true +-- Set options +require('options') -- [[ Basic Keymaps ]] |