tangled
alpha
login
or
join now
seth.computer
/
dotfiles
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
hie -> hls
seth.computer
4 years ago
3641f49f
162f5631
+2
-2
2 changed files
expand all
collapse all
unified
split
nvim
init.vim
zsh.nix
+1
-1
nvim/init.vim
···
170
170
buf_set_keymap('n', '<leader>ff', '<cmd>lua vim.lsp.buf.formatting()<CR>', opts)
171
171
end
172
172
173
173
-
local servers = {'gopls', 'terraformls', 'solargraph', 'rls', 'tsserver', 'hie', 'rnix', 'graphql'}
173
173
+
local servers = {'gopls', 'terraformls', 'solargraph', 'rls', 'tsserver', 'hls', 'rnix', 'graphql'}
174
174
for _, lsp in ipairs(servers) do
175
175
nvim_lsp[lsp].setup {
176
176
on_attach = on_attach,
+1
-1
zsh.nix
···
39
39
plugins = [
40
40
"git"
41
41
"vi-mode"
42
42
-
# TODO: some way to know i'm in a nix shell?
42
42
+
# TODO: some way to know i'm in a nix shell? Maybe this?
43
43
];
44
44
};
45
45
}