minor fixes, tab settings, and default progs

This commit is contained in:
Ian Griffin 2025-04-17 10:02:07 +08:00
parent 6620f83802
commit 280469e805
4 changed files with 6 additions and 7 deletions

View File

@ -1 +1 @@
require('conftool').set({'tabstop', 2},{'shiftwidth', 2})
require('conftool').set({'tabstop', 4},{'shiftwidth', 4})

View File

@ -1 +1 @@
require('conftool').set({'tabstop', 5},{'shiftwidth', 5})
require('conftool').set({'tabstop', 5},{'shiftwidth', 5}, {'expandtab', false})

View File

@ -1,7 +1,7 @@
return {
template_dir = '~/templates',
external_term = 'xfce4-terminal',
external_filemgr = 'thunar',
external_pdfviewer = 'atril',
external_term = 'gterm',
external_filemgr = 'gfiles',
external_pdfviewer = 'gpdf',
lsp_path = vim.env.HOME .. '/.local/share/lsp_servers'
}

View File

@ -5,7 +5,7 @@ local ct = require 'conftool'
--
vim.cmd('filetype plugin indent on')
ct.set('autoindent', 'smartindent', 'cindent')
ct.set({'tabstop', 5}, {'shiftwidth', 5})
ct.set({'tabstop', 4}, {'shiftwidth', 4})
--
-- Indent indicators
@ -19,7 +19,6 @@ vim.opt.list = true
ct.set('ruler', 'showcmd', 'cursorline', 'title')
-- ct.set('number')
ct.set(
{'background', 'light'},
{'termguicolors', true},
{'signcolumn', 'number'},
{'conceallevel', 0},