Recently, I have installed Sublime text in Ubuntu20.04. But there is indentation problem .
#include<bits/stdc++.h>
using namespace std;
int main(){|}
After hit enter, indentation is like this:
#include<bits/stdc++.h>
using namespace std;
int main(){
|}
But it should be like this:
#include<bits/stdc++.h>
using namespace std;int main()
{
… |
}
How can I fix this?
N.B. I also install some packages to solve this problem but in vain.