mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-01-16 07:27:47 +00:00
Compare commits
4 commits
ba27d85dee
...
e51dce002e
| Author | SHA1 | Date | |
|---|---|---|---|
|
e51dce002e |
|||
| 7d0c56d74c | |||
| 4200828526 | |||
|
e7649d1ec5 |
3 changed files with 5 additions and 14 deletions
3
.github/FUNDING.yml
vendored
3
.github/FUNDING.yml
vendored
|
|
@ -1,4 +1 @@
|
||||||
github: NotAShelf
|
github: NotAShelf
|
||||||
ko_fi: NotAShelf
|
|
||||||
liberapay: NotAShelf
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,11 @@
|
||||||
|
|
||||||
- Deprecate rnix-lsp as it has been abandoned and archived upstream.
|
- Deprecate rnix-lsp as it has been abandoned and archived upstream.
|
||||||
|
|
||||||
|
- Hardcoded indentation values for the Nix language module have been removed. To
|
||||||
|
replicate previous behaviour, you must either consolidate Nix indentation in
|
||||||
|
your Editorconfig configuration, or use an autocommand to set indentation
|
||||||
|
values for buffers with the Nix filetype.
|
||||||
|
|
||||||
[amadaluzia](https://github.com/amadaluzia):
|
[amadaluzia](https://github.com/amadaluzia):
|
||||||
|
|
||||||
[haskell-tools.nvim]: https://github.com/MrcJkb/haskell-tools.nvim
|
[haskell-tools.nvim]: https://github.com/MrcJkb/haskell-tools.nvim
|
||||||
|
|
|
||||||
|
|
@ -187,17 +187,6 @@ in {
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
vim.pluginRC.nix = ''
|
|
||||||
vim.api.nvim_create_autocmd("FileType", {
|
|
||||||
pattern = "nix",
|
|
||||||
callback = function(opts)
|
|
||||||
local bo = vim.bo[opts.buf]
|
|
||||||
bo.tabstop = 2
|
|
||||||
bo.shiftwidth = 2
|
|
||||||
bo.softtabstop = 2
|
|
||||||
end
|
|
||||||
})
|
|
||||||
'';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
(mkIf cfg.treesitter.enable {
|
(mkIf cfg.treesitter.enable {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue