add terraform lsp and starship icon

This commit is contained in:
Gabriel Fontes
2022-02-16 14:00:30 -03:00
parent 152bde2dd0
commit 80fc6fef86
3 changed files with 26 additions and 24 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ in {
"Tabs
set ts=4 sts=4 sw=4 "4 char-wide tab
autocmd FileType json,html,htmldjango,nix,scss,typescript,php,haskell setlocal ts=2 sts=2 sw=2 "2 char-wide overrides
autocmd FileType json,html,htmldjango,nix,scss,typescript,php,haskell,tf setlocal ts=2 sts=2 sw=2 "2 char-wide overrides
set expandtab "Use spaces
"Set tera to use htmldjango syntax
+1
View File
@@ -22,6 +22,7 @@
lspconfig.kotlin_language_server.setup{} -- Kotlin
lspconfig.html.setup{} -- HTML
lspconfig.cssls.setup{capabilities = capabilities} -- CSS/SASS
lspconfig.terraformls.setup{filetypes={"terraform","tf","hcl"}} -- Terraform
lspconfig.rust_analyzer.setup{ -- Rust
settings = {
+24 -23
View File
@@ -36,29 +36,30 @@
symbol = "";
format = "via [$symbol$state( $name)]($style) ";
};
conda = { symbol = " "; };
dart = { symbol = " "; };
directory = { read_only = " "; };
docker_context = { symbol = " "; };
elixir = { symbol = " "; };
elm = { symbol = " "; };
git_branch = { symbol = " "; };
golang = { symbol = " "; };
hg_branch = { symbol = " "; };
java = { symbol = " "; };
julia = { symbol = " "; };
memory_usage = { symbol = " "; };
nim = { symbol = " "; };
nodejs = { symbol = " "; };
package = { symbol = " "; };
perl = { symbol = " "; };
php = { symbol = " "; };
python = { symbol = " "; };
ruby = { symbol = " "; };
rust = { symbol = " "; };
scala = { symbol = " "; };
shlvl = { symbol = " "; };
swift = { symbol = " "; };
conda.symbol = " ";
dart.symbol = " ";
directory.read_only = " ";
docker_context.symbol = " ";
elixir.symbol = " ";
elm.symbol = " ";
git_branch.symbol = " ";
golang.symbol = " ";
hg_branch.symbol = " ";
java.symbol = " ";
julia.symbol = " ";
memory_usage.symbol = " ";
nim.symbol = " ";
nodejs.symbol = " ";
package.symbol = " ";
perl.symbol = " ";
php.symbol = " ";
python.symbol = " ";
ruby.symbol = " ";
rust.symbol = " ";
scala.symbol = " ";
shlvl.symbol = " ";
swift.symbol = " ";
terraform.symbol = "";
};
};
}