nvim: enable spell checker
This commit is contained in:
parent
db1e6d1bad
commit
9ef7e27f79
@ -1,11 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
# TODO
|
||||
# Linter (ale)
|
||||
# Markdown spellcheck
|
||||
# Missing plugins from old vim config
|
||||
# Trailing spaces in statusline
|
||||
# Good example: https://github.com/fred-drake/neovim/blob/master/config/python/language.nix
|
||||
# Trailing spaces in status line
|
||||
|
||||
imports = [
|
||||
./telescope.nix
|
||||
@ -35,7 +30,9 @@
|
||||
colorcolumn = "88";
|
||||
cursorline = true;
|
||||
number = true;
|
||||
spell = true;
|
||||
termguicolors = true;
|
||||
textwidth = 80;
|
||||
};
|
||||
plugins = {
|
||||
cmp = {
|
||||
@ -79,9 +76,9 @@
|
||||
lsp.servers.tflint.enable = true;
|
||||
lsp.servers.yamlls.enable = true;
|
||||
lsp-format.enable = true; # Automatically format on save
|
||||
lsp-lines.enable = true; # Display lsp hints in lines
|
||||
lsp-lines.enable = true; # Display LSP hints in lines
|
||||
lsp-signature.enable = true; # Show function signature when typing
|
||||
lualine.enable = true; # Statusline
|
||||
lualine.enable = true; # Status line
|
||||
render-markdown.enable = true;
|
||||
treesitter.enable = true;
|
||||
web-devicons.enable = true;
|
||||
|
@ -22,7 +22,7 @@
|
||||
"<leader>ft" = "treesitter";
|
||||
# Git pickers
|
||||
"<leader>fgs" = "git_status";
|
||||
# lsp
|
||||
# LSP
|
||||
};
|
||||
};
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user