1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-10-12 20:41:16 +02:00

nvim: swapped file explorer added indent-lines and fzf

This commit is contained in:
2023-07-30 05:34:17 +02:00
parent 7e82242013
commit e83f452fc3
7 changed files with 92 additions and 35 deletions

View File

@@ -1,6 +1,10 @@
vim.o.go = 'a'
vim.o.showmode = false
-- disable netrw
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
-- enable mouse for all modes
vim.o.mouse = 'a'
vim.o.clipboard = 'unnamedplus'
@@ -61,6 +65,11 @@ vim.o.undodir = vim.env.XDG_CACHE_HOME .. "/vim/undo"
vim.g.python_host_prog = '/usr/bin/python2'
vim.g.python3_host_prog = '/usr/bin/python3'
-- append
vim.opt.list = true
vim.opt.listchars:append "space:·"
vim.opt.listchars:append "eol:"
-- set filetypes correctly by extension
require('autocmd')