checkhealth adjustements
This commit is contained in:
parent
558edd0f65
commit
9f2c4dcda7
3 changed files with 5 additions and 2 deletions
|
@ -5,6 +5,7 @@ ENV LANG="C.UTF-8"
|
||||||
ENV LC_ALL="C.UTF-8"
|
ENV LC_ALL="C.UTF-8"
|
||||||
|
|
||||||
# libicu - for marksman linter
|
# libicu - for marksman linter
|
||||||
|
# ripgrep and fd-find for telescope
|
||||||
ENV NEOVIM_PKGS="\
|
ENV NEOVIM_PKGS="\
|
||||||
wget \
|
wget \
|
||||||
unzip \
|
unzip \
|
||||||
|
@ -12,6 +13,7 @@ ENV NEOVIM_PKGS="\
|
||||||
git-lfs \
|
git-lfs \
|
||||||
neovim \
|
neovim \
|
||||||
ripgrep \
|
ripgrep \
|
||||||
|
fd-find \
|
||||||
npm \
|
npm \
|
||||||
ShellCheck \
|
ShellCheck \
|
||||||
tree-sitter-cli \
|
tree-sitter-cli \
|
||||||
|
|
|
@ -77,6 +77,7 @@ vim.opt.tabstop = 4 -- number of columns occupied by a tab
|
||||||
vim.opt.softtabstop = 4 -- see multiple spaces as tabstops so <BS> does the right thing
|
vim.opt.softtabstop = 4 -- see multiple spaces as tabstops so <BS> does the right thing
|
||||||
vim.opt.expandtab = true -- converts tabs to white space
|
vim.opt.expandtab = true -- converts tabs to white space
|
||||||
vim.opt.shiftwidth = 4 -- width for autoindents
|
vim.opt.shiftwidth = 4 -- width for autoindents
|
||||||
|
vim.opt.sessionoptions="blank,buffers,curdir,folds,help,tabpages,winsize,winpos,terminal,localoptions" -- suggested by autosession plugin
|
||||||
vim.filetype.add({
|
vim.filetype.add({
|
||||||
extension = {
|
extension = {
|
||||||
sls = "sls.yaml.jinja",
|
sls = "sls.yaml.jinja",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
return {
|
return {
|
||||||
config = {
|
config = {
|
||||||
auto_save_enabled = true,
|
auto_restore = true,
|
||||||
auto_restore_enabled = true
|
auto_save = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue