diff options
author | Adam <56338480+adastx@users.noreply.github.com> | 2021-10-18 18:29:32 +0200 |
---|---|---|
committer | Adam <56338480+adastx@users.noreply.github.com> | 2021-10-18 18:29:32 +0200 |
commit | e9e3805205027c5c95f5a5763e5c01c32e08efe6 (patch) | |
tree | 6e4462992e4ab3a4cc8a60e82c3b2f85a70aa8aa /.config/nvim | |
parent | 70c5c7eeda1de97e3a31ac9b02e232741657403e (diff) |
Some vim+nvim config cleanup + simple vim statusbar
Diffstat (limited to '.config/nvim')
-rw-r--r-- | .config/nvim/lua/opts.lua | 9 | ||||
-rw-r--r-- | .config/nvim/lua/setup.lua | 21 |
2 files changed, 9 insertions, 21 deletions
diff --git a/.config/nvim/lua/opts.lua b/.config/nvim/lua/opts.lua index 157c899..56f066a 100644 --- a/.config/nvim/lua/opts.lua +++ b/.config/nvim/lua/opts.lua @@ -127,13 +127,12 @@ require'nvim-treesitter.configs'.setup { } require("toggleterm").setup{ - -- size can be a number or function which is passed the current terminal - size = 65, + size = 15, open_mapping = [[<c-\>]], - hide_numbers = true, -- hide the number column in toggleterm buffers + hide_numbers = true, persist_size = true, - direction = 'vertical', - close_on_exit = true, -- close the terminal window when the process exits + direction = 'horizontal', + close_on_exit = true, } require('kommentary.config').use_extended_mappings() diff --git a/.config/nvim/lua/setup.lua b/.config/nvim/lua/setup.lua index 5d71554..8c59b41 100644 --- a/.config/nvim/lua/setup.lua +++ b/.config/nvim/lua/setup.lua @@ -1,22 +1,11 @@ local set = vim.opt -if vim.fn.has('mouse') then - set.mouse = "a" -end - -if vim.fn.has('filetype') then - vim.cmd('filetype indent plugin on') -end - -if vim.fn.has('syntax') then - vim.cmd('syntax on') -end - -if vim.fn.has('persistent_undo') then - vim.cmd('set undodir=$HOME/.vim/undo') - vim.cmd('set undofile') -end +vim.cmd('filetype indent plugin on') +vim.cmd('syntax enable') +vim.cmd('set undodir=$HOME/.vim/undo') +vim.cmd('set undofile') +set.mouse = "a" set.termguicolors = true set.hidden = true set.wildmenu = true |