add vim-sleuth
enable treesitter indentation
This commit is contained in:
parent
96d3e928b1
commit
cbae9439e3
3 changed files with 10 additions and 4 deletions
|
@ -15,8 +15,6 @@ My current setup is [Regolith OS](https://regolith-desktop.com/) which is basica
|
|||
- some kind of tag setup with: bootstrap, update, etc.
|
||||
- i3 app shortcuts
|
||||
- Configuration for desktop at uni. It should be really similar, except syncthing should have a new keypair. Also some applications are not necessary, e.g. nicotine+ and virtualbox.
|
||||
- default neovim editor
|
||||
- dropdown autocomplete
|
||||
- I think fzf is not cloned?
|
||||
|
||||
Would like Ansible Vault to check in keypair for syncthing.
|
||||
|
@ -31,8 +29,9 @@ As an intermediate solution, I can just put the password in keepass...
|
|||
#### Neovim
|
||||
|
||||
- More cool plugins :)
|
||||
- gcc comment
|
||||
- indenting
|
||||
- default neovim editor
|
||||
- dropdown autocomplete
|
||||
- fzf in vim? telescope or something
|
||||
|
||||
## Long-term TODO
|
||||
|
||||
|
|
|
@ -51,4 +51,7 @@ return require('packer').startup(function()
|
|||
|
||||
-- Commenting
|
||||
use 'terrortylor/nvim-comment'
|
||||
|
||||
-- Automatic settings depending on file type
|
||||
use 'tpope/vim-sleuth'
|
||||
end)
|
||||
|
|
|
@ -10,4 +10,8 @@ require'nvim-treesitter.configs'.setup {
|
|||
-- `false` will disable the whole extension
|
||||
enable = true,
|
||||
},
|
||||
|
||||
indent = {
|
||||
enable = true
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue